From 632061031660e8ba0676fd6ec7738f9d51183e64 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 3 Jul 2019 18:25:33 -0700 Subject: [PATCH] Install test dependencies in Circle CI --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 83d19a6..d3d1bd3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,7 +35,7 @@ jobs: command: | python3 -m venv venv . venv/bin/activate - pip install -e . + pip install -e .[test] - save_cache: key: v1-dependency-cache-{{ checksum "setup.py" }} paths: @@ -44,7 +44,7 @@ jobs: name: run tests command: | . venv/bin/activate - pip install -e . + pip install -e .[test] pip install pytest pytest test-python-install: @@ -63,7 +63,7 @@ jobs: command: | python3 -m venv venv . venv/bin/activate - pip install -e . + pip install -e .[test] - save_cache: key: v1-dependency-cache-{{ checksum "setup.py" }} paths: @@ -72,7 +72,7 @@ jobs: name: run tests command: | . venv/bin/activate - pip install -e . + pip install -e .[test] pip install pytest pytest deploy: @@ -87,7 +87,7 @@ jobs: command: | python3 -m venv venv . venv/bin/activate - pip install -e . + pip install -e .[test] - save_cache: key: v1-dependency-cache-{{ checksum "setup.py" }} paths: