Skip to content

Commit dabe0ab

Browse files
committed
Test simplifying CircleCI config
1 parent 7d52f57 commit dabe0ab

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

.circleci/config.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ jobs:
77
build:
88
docker:
99
- image: circleci/python:3
10-
- run:
11-
name: run tests
12-
command: |
13-
pip install tox
14-
tox
15-
- store_artifacts:
16-
path: test-reports
17-
destination: test-reports
10+
steps:
11+
- checkout
12+
- run:
13+
name: install dependencies
14+
command: |
15+
pip install tox
16+
- run:
17+
name: run tests
18+
command: |
19+
tox
20+
- store_artifacts:
21+
path: test-reports
22+
destination: test-reports

0 commit comments

Comments
 (0)