From e514205cb035b2b81b4ca48d26e6cfb0679c3d9c Mon Sep 17 00:00:00 2001 From: Janis Klaise Date: Tue, 19 Mar 2019 16:37:30 +0000 Subject: [PATCH] Change CI test commands to use correct dependencies --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 64edbb672..c4acc83f2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: