Skip to content

Commit 64f3b15

Browse files
committed
use underscores for command names
1 parent f5053a7 commit 64f3b15

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22

33
commands:
4-
test-core:
4+
test_core:
55
parameters:
66
py:
77
default: "36"
@@ -16,7 +16,7 @@ commands:
1616
command: "cd packages/python/plotly; pytest plotly/tests/test_core"
1717
no_output_timeout: 20m
1818

19-
test-optional:
19+
test_optional:
2020
parameters:
2121
py:
2222
default: "36"
@@ -84,28 +84,28 @@ jobs:
8484
docker:
8585
- image: circleci/python:3.6-stretch-node-browsers
8686
steps:
87-
- test-core:
87+
- test_core:
8888
py: "36"
8989

9090
python-3.7-core:
9191
docker:
9292
- image: circleci/python:3.7-stretch-node-browsers
9393
steps:
94-
- test-core:
94+
- test_core:
9595
py: "37"
9696

9797
python-3.8-core:
9898
docker:
9999
- image: circleci/python:3.8-buster-node-browsers
100100
steps:
101-
- test-core:
101+
- test_core:
102102
py: "38"
103103

104104
python-3.9-core:
105105
docker:
106106
- image: circleci/python:3.9-buster-node-browsers
107107
steps:
108-
- test-core:
108+
- test_core:
109109
py: "39"
110110

111111
python-3.7-percy:
@@ -146,28 +146,28 @@ jobs:
146146
docker:
147147
- image: circleci/python:3.6-stretch-node-browsers
148148
steps:
149-
- test-optional:
149+
- test_optional:
150150
py: "36"
151151

152152
python-3.7-optional:
153153
docker:
154154
- image: circleci/python:3.7-stretch-node-browsers
155155
steps:
156-
- test-optional:
156+
- test_optional:
157157
py: "37"
158158

159159
python-3.8-optional:
160160
docker:
161161
- image: circleci/python:3.8-buster-node-browsers
162162
steps:
163-
- test-optional:
163+
- test_optional:
164164
py: "38"
165165

166166
python-3.9-optional:
167167
docker:
168168
- image: circleci/python:3.9-buster-node-browsers
169169
steps:
170-
- test-optional:
170+
- test_optional:
171171
py: "39"
172172

173173
# python-3.6-optional:

0 commit comments

Comments
 (0)