Skip to content

Commit

Permalink
Change CI test commands to use correct dependencies (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
jklaise authored Mar 19, 2019
1 parent 349ed2b commit e9427ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
- checkout
- run:
name: Install dependencies
command: pip install -r requirements/requirements_ci.txt
command: pip install -r requirements/requirements_ci.txt -r requirements/requirements.txt
- run:
name: Lint code
command: make lint
command: flake8 .
- run:
name: Static typechecking
command: make mypy
command: mypy .
- run:
name: Run tests
command: make test
command: pytest

build-docs:
docker:
Expand Down

0 comments on commit e9427ea

Please sign in to comment.