From 5e637373615a8fa96c1f726c1b2ce3131e7eabe3 Mon Sep 17 00:00:00 2001 From: Ric Evans Date: Thu, 18 Aug 2022 15:43:26 -0500 Subject: [PATCH] integration tests: use `pip install .[tests]` --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 361e6451..db84e476 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,13 +16,13 @@ jobs: - run: command: | python3 -m virtualenv -p python3 env_rest && . env_rest/bin/activate && pip install --upgrade pip - pip install . + pip install .[tests] python3 -m rest_server --override-krs-insts ./resources/dummy-krs-data.json background: true - run: | python3 -m virtualenv -p python3 env_web && . env_web/bin/activate && pip install --upgrade pip sleep 30 - pip install . + pip install .[tests] cp resources/dummy_client_secrets.json client_secrets.json pytest -vvv tests/integration