63
63
command : ' sudo pip install tox'
64
64
- run :
65
65
name : Test with tox
66
- command : ' cd package /python/plotly; tox -e py37-core'
66
+ command : ' cd packages /python/plotly; tox -e py37-core'
67
67
no_output_timeout : 20m
68
68
69
69
# Optional
@@ -80,11 +80,11 @@ jobs:
80
80
command : ' sudo pip install tox'
81
81
- run :
82
82
name : Install npm dependencies
83
- command : cd package /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
83
+ command : cd packages /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
84
84
no_output_timeout : 20m
85
85
- run :
86
86
name : Test with tox
87
- command : ' cd package /python/plotly; tox -e py27-optional'
87
+ command : ' cd packages /python/plotly; tox -e py27-optional'
88
88
no_output_timeout : 20m
89
89
90
90
python-3.5-optional :
@@ -100,11 +100,11 @@ jobs:
100
100
command : ' sudo pip install tox'
101
101
- run :
102
102
name : Install npm dependencies
103
- command : cd package /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
103
+ command : cd packages /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
104
104
no_output_timeout : 20m
105
105
- run :
106
106
name : Test with tox
107
- command : ' cd package /python/plotly; tox -e py35-optional'
107
+ command : ' cd packages /python/plotly; tox -e py35-optional'
108
108
no_output_timeout : 20m
109
109
110
110
python-3.6-optional :
@@ -120,11 +120,11 @@ jobs:
120
120
command : ' sudo pip install tox'
121
121
- run :
122
122
name : Install npm dependencies
123
- command : cd package /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
123
+ command : cd packages /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
124
124
no_output_timeout : 20m
125
125
- run :
126
126
name : Test with tox
127
- command : ' cd package /python/plotly; tox -e py36-optional'
127
+ command : ' cd packages /python/plotly; tox -e py36-optional'
128
128
no_output_timeout : 20m
129
129
130
130
python-3.7-optional :
@@ -140,11 +140,11 @@ jobs:
140
140
command : ' sudo pip install tox'
141
141
- run :
142
142
name : Install npm dependencies
143
- command : cd package /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
143
+ command : cd packages /python/plotly/plotly/tests/test_optional/test_jupyter && npm install
144
144
no_output_timeout : 20m
145
145
- run :
146
146
name : Test with tox
147
- command : ' cd package /python/plotly; tox -e py37-optional'
147
+ command : ' cd packages /python/plotly; tox -e py37-optional'
148
148
no_output_timeout : 20m
149
149
150
150
# Plot.ly
@@ -161,7 +161,7 @@ jobs:
161
161
command : ' sudo pip install tox'
162
162
- run :
163
163
name : Test with tox
164
- command : ' cd package /python/chart-studio; tox -e py27-plot_ly'
164
+ command : ' cd packages /python/chart-studio; tox -e py27-plot_ly'
165
165
no_output_timeout : 20m
166
166
167
167
python-3.5-plot_ly :
@@ -177,7 +177,7 @@ jobs:
177
177
command : ' sudo pip install tox'
178
178
- run :
179
179
name : Test with tox
180
- command : ' cd package /python/chart-studio; tox -e py35-plot_ly'
180
+ command : ' cd packages /python/chart-studio; tox -e py35-plot_ly'
181
181
no_output_timeout : 20m
182
182
183
183
python-3.7-plot_ly :
@@ -193,7 +193,7 @@ jobs:
193
193
command : ' sudo pip install tox'
194
194
- run :
195
195
name : Test with tox
196
- command : ' cd package /python/chart-studio; tox -e py37-plot_ly'
196
+ command : ' cd packages /python/chart-studio; tox -e py37-plot_ly'
197
197
no_output_timeout : 20m
198
198
199
199
python-2-7-orca :
@@ -300,31 +300,31 @@ jobs:
300
300
command : ' sudo pip install tox requests yapf pytz decorator retrying inflect'
301
301
- run :
302
302
name : Update plotlywidget version
303
- command : ' cd package /python/plotly; python setup.py updateplotlywidgetversion'
303
+ command : ' cd packages /python/plotly; python setup.py updateplotlywidgetversion'
304
304
- run :
305
305
name : Update plotly.js to dev
306
- command : ' cd package /python/plotly; python setup.py updateplotlyjsdev'
306
+ command : ' cd packages /python/plotly; python setup.py updateplotlyjsdev'
307
307
- run :
308
308
name : Test with tox
309
309
command : |
310
- cd package /python/plotly
310
+ cd packages /python/plotly
311
311
locale
312
312
tox -e py37-core -- -a '!nodev'
313
313
no_output_timeout : 20m
314
314
- run :
315
315
name : Commit
316
316
command : |
317
- cd package /python/plotly
317
+ cd packages /python/plotly
318
318
sudo mkdir /dist
319
319
git config --global user.email "[email protected] "
320
320
git config --global user.name "Your Name"
321
321
git add -A
322
322
git commit -m "Codegen"
323
323
when : always
324
324
- run :
325
- name : Build source distribution package
325
+ name : Build source distribution packages
326
326
command : |
327
- cd package /python/plotly
327
+ cd packages /python/plotly
328
328
python setup.py sdist
329
329
sudo cp dist/* /dist
330
330
when : always
0 commit comments