Skip to content

Commit 9df1ee0

Browse files
authored
Merge pull request #953 from jbampton/remove-quotes
Standardize YAML by removing quotes.
2 parents 7d2a466 + 6c4acd1 commit 9df1ee0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- save_cache:
4545
key: dep-{{ checksum ".circleci/config.yml" }}-{{ checksum "ver.txt" }}-{{ checksum "requires-dev.txt" }}-{{ checksum "requires-install.txt" }}-{{ checksum "requires-testing.txt" }}
4646
paths:
47-
- "venv"
47+
- venv
4848
- run:
4949
name: 🌸 Python & JS Lint
5050
command: |
@@ -103,7 +103,7 @@ jobs:
103103
- save_cache:
104104
key: dep-{{ checksum ".circleci/config.yml" }}-{{ checksum "ver.txt" }}-{{ checksum "requires-dev.txt" }}-{{ checksum "requires-install.txt" }}-{{ checksum "requires-testing.txt" }}
105105
paths:
106-
- "venv"
106+
- venv
107107
- run:
108108
name: ️️🏗️ build core
109109
command: |
@@ -154,7 +154,7 @@ jobs:
154154
- save_cache:
155155
key: dep-{{ checksum ".circleci/config.yml" }}-{{ checksum "ver.txt" }}-{{ checksum "requires-dev.txt" }}-{{ checksum "requires-install.txt" }}-{{ checksum "requires-testing.txt" }}
156156
paths:
157-
- "venv"
157+
- venv
158158
- run:
159159
name: ️️🏗️ build misc
160160
command: |
@@ -188,7 +188,7 @@ jobs:
188188
docker:
189189
- image: circleci/python:3.7-stretch-node-browsers
190190
environment:
191-
PERCY_PARALLEL_TOTAL: '-1'
191+
PERCY_PARALLEL_TOTAL: -1
192192
PYVERSION: python37
193193
parallelism: 3
194194
steps:
@@ -224,15 +224,15 @@ jobs:
224224
docker:
225225
- image: circleci/python:3.6-stretch-node-browsers
226226
environment:
227-
PERCY_ENABLE: '0'
227+
PERCY_ENABLE: 0
228228
PYVERSION: python36
229229

230230
test-27:
231231
<<: *test
232232
docker:
233233
- image: circleci/python:2.7-stretch-node-browsers
234234
environment:
235-
PERCY_ENABLE: '0'
235+
PERCY_ENABLE: 0
236236
PYVERSION: python27
237237

238238
workflows:

0 commit comments

Comments
 (0)