Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d06ff6d

Browse files
committed
Fix circle ci testing paths
1 parent 384a27f commit d06ff6d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.circleci/config.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
command: 'sudo pip install tox'
6464
- run:
6565
name: Test with tox
66-
command: 'cd package/python/plotly; tox -e py37-core'
66+
command: 'cd packages/python/plotly; tox -e py37-core'
6767
no_output_timeout: 20m
6868

6969
# Optional
@@ -80,11 +80,11 @@ jobs:
8080
command: 'sudo pip install tox'
8181
- run:
8282
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
8484
no_output_timeout: 20m
8585
- run:
8686
name: Test with tox
87-
command: 'cd package/python/plotly; tox -e py27-optional'
87+
command: 'cd packages/python/plotly; tox -e py27-optional'
8888
no_output_timeout: 20m
8989

9090
python-3.5-optional:
@@ -100,11 +100,11 @@ jobs:
100100
command: 'sudo pip install tox'
101101
- run:
102102
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
104104
no_output_timeout: 20m
105105
- run:
106106
name: Test with tox
107-
command: 'cd package/python/plotly; tox -e py35-optional'
107+
command: 'cd packages/python/plotly; tox -e py35-optional'
108108
no_output_timeout: 20m
109109

110110
python-3.6-optional:
@@ -120,11 +120,11 @@ jobs:
120120
command: 'sudo pip install tox'
121121
- run:
122122
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
124124
no_output_timeout: 20m
125125
- run:
126126
name: Test with tox
127-
command: 'cd package/python/plotly; tox -e py36-optional'
127+
command: 'cd packages/python/plotly; tox -e py36-optional'
128128
no_output_timeout: 20m
129129

130130
python-3.7-optional:
@@ -140,11 +140,11 @@ jobs:
140140
command: 'sudo pip install tox'
141141
- run:
142142
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
144144
no_output_timeout: 20m
145145
- run:
146146
name: Test with tox
147-
command: 'cd package/python/plotly; tox -e py37-optional'
147+
command: 'cd packages/python/plotly; tox -e py37-optional'
148148
no_output_timeout: 20m
149149

150150
# Plot.ly
@@ -161,7 +161,7 @@ jobs:
161161
command: 'sudo pip install tox'
162162
- run:
163163
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'
165165
no_output_timeout: 20m
166166

167167
python-3.5-plot_ly:
@@ -177,7 +177,7 @@ jobs:
177177
command: 'sudo pip install tox'
178178
- run:
179179
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'
181181
no_output_timeout: 20m
182182

183183
python-3.7-plot_ly:
@@ -193,7 +193,7 @@ jobs:
193193
command: 'sudo pip install tox'
194194
- run:
195195
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'
197197
no_output_timeout: 20m
198198

199199
python-2-7-orca:
@@ -300,31 +300,31 @@ jobs:
300300
command: 'sudo pip install tox requests yapf pytz decorator retrying inflect'
301301
- run:
302302
name: Update plotlywidget version
303-
command: 'cd package/python/plotly; python setup.py updateplotlywidgetversion'
303+
command: 'cd packages/python/plotly; python setup.py updateplotlywidgetversion'
304304
- run:
305305
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'
307307
- run:
308308
name: Test with tox
309309
command: |
310-
cd package/python/plotly
310+
cd packages/python/plotly
311311
locale
312312
tox -e py37-core -- -a '!nodev'
313313
no_output_timeout: 20m
314314
- run:
315315
name: Commit
316316
command: |
317-
cd package/python/plotly
317+
cd packages/python/plotly
318318
sudo mkdir /dist
319319
git config --global user.email "[email protected]"
320320
git config --global user.name "Your Name"
321321
git add -A
322322
git commit -m "Codegen"
323323
when: always
324324
- run:
325-
name: Build source distribution package
325+
name: Build source distribution packages
326326
command: |
327-
cd package/python/plotly
327+
cd packages/python/plotly
328328
python setup.py sdist
329329
sudo cp dist/* /dist
330330
when: always

0 commit comments

Comments
 (0)