Skip to content

Commit e3df069

Browse files
committed
Remove unneeded quotes from YAML.
1 parent 1d8e38d commit e3df069

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.circleci/config.yml

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

33
jobs:
4-
"python-3.6": &test-template
4+
python-3.6: &test-template
55
docker:
66
- image: circleci/python:3.6-stretch-node-browsers
77

@@ -33,7 +33,7 @@ jobs:
3333
- save_cache:
3434
key: deps1-{{ .Branch }}-{{ checksum "circlejob.txt" }}-{{ checksum "tests/requirements.txt" }}-{{ checksum ".circleci/config.yml" }}
3535
paths:
36-
- "venv"
36+
- venv
3737

3838
- run:
3939
name: Generations tests
@@ -42,12 +42,12 @@ jobs:
4242
pytest
4343
when: always
4444

45-
"python-2.7":
45+
python-2.7:
4646
<<: *test-template
4747
docker:
4848
- image: circleci/python:2.7-stretch-node-browsers
4949

50-
"python-3.7-install-test":
50+
python-3.7-install-test:
5151
docker:
5252
- image: circleci/python:3.7-stretch-node-browsers
5353

@@ -79,7 +79,7 @@ jobs:
7979
- save_cache:
8080
key: deps1-{{ .Branch }}-{{ checksum "circlejob.txt" }}-{{ checksum "tests/requirements.txt" }}-{{ checksum ".circleci/config.yml" }}
8181
paths:
82-
- "venv"
82+
- venv
8383

8484
- run:
8585
name: Generate Project & test
@@ -101,6 +101,6 @@ workflows:
101101
version: 2
102102
build:
103103
jobs:
104-
- "python-3.6"
105-
- "python-2.7"
106-
- "python-3.7-install-test"
104+
- python-3.6
105+
- python-2.7
106+
- python-3.7-install-test

0 commit comments

Comments
 (0)