Skip to content

Commit

Permalink
integration tests: use pip install .[tests]
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Aug 18, 2022
1 parent 32fc245 commit 5e63737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5e63737

Please sign in to comment.