Skip to content

Commit

Permalink
circleci config: first run tests, then linting
Browse files Browse the repository at this point in the history
  • Loading branch information
astanin committed Mar 23, 2020
1 parent 896786c commit 5ec0a6b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,16 @@ jobs:
key: v1-dependencies-{{ checksum ".circleci/requirements.txt" }}

- run:
name: run linting
name: run tests
command: |
. venv/bin/activate
tox -e lint
tox -e py38-extra
# run tests!
- run:
name: run tests
name: run linting
command: |
. venv/bin/activate
tox -e py38-extra
tox -e lint
- store_artifacts:
path: test-reports
Expand Down

0 comments on commit 5ec0a6b

Please sign in to comment.