Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit f2de328

Browse files
committed
Remove unneeded quotes from YAML keys. Remove duplicate entry from .gitignore.
Fix case of YAML value - Run.
1 parent f3737af commit f2de328

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

.circleci/config.yml

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

33
jobs:
4-
"server-test":
4+
server-test:
55
docker:
66
- image: circleci/python:3.6.7-node-browsers
77
- image: cypress/base:10
@@ -49,7 +49,7 @@ jobs:
4949
npm run test.server
5050
5151
52-
"standalone-test":
52+
standalone-test:
5353
docker:
5454
- image: circleci/python:3.6.7-node-browsers
5555
- image: cypress/base:10
@@ -77,7 +77,7 @@ jobs:
7777
command: npm run test.standalone
7878

7979

80-
"unit-test":
80+
unit-test:
8181
docker:
8282
- image: circleci/python:3.6.7-node-browsers
8383
- image: cypress/base:10
@@ -118,7 +118,7 @@ jobs:
118118
npm run test.unit
119119
120120
121-
"visual-test":
121+
visual-test:
122122
docker:
123123
- image: circleci/node:8.11.3-browsers
124124

@@ -146,7 +146,7 @@ jobs:
146146
command: npm run test.visual
147147

148148

149-
"node":
149+
node:
150150
docker:
151151
- image: circleci/python:3.6.7-node
152152

@@ -183,7 +183,7 @@ jobs:
183183
when: always
184184

185185

186-
"python-3.6":
186+
python-3.6:
187187
docker:
188188
- image: circleci/python:3.6.7-stretch-node-browsers
189189

@@ -224,7 +224,7 @@ jobs:
224224
pip install -e .
225225
226226
- run:
227-
name: ⚙️ run integration test
227+
name: ⚙️ Run integration test
228228
command: |
229229
. venv/bin/activate
230230
pytest --junitxml=test-reports/dash.xml tests/integration
@@ -241,9 +241,9 @@ workflows:
241241
version: 2
242242
build:
243243
jobs:
244-
- "python-3.6"
245-
- "node"
246-
- "server-test"
247-
- "standalone-test"
248-
- "unit-test"
249-
- "visual-test"
244+
- python-3.6
245+
- node
246+
- server-test
247+
- standalone-test
248+
- unit-test
249+
- visual-test

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,3 @@ lib
4242
dist
4343
*__pycache__*
4444
__pycache__/
45-
46-
*.pyc

0 commit comments

Comments
 (0)