Skip to content

Commit

Permalink
Merge pull request #989 from p12tic/github-install-requirements-uncon…
Browse files Browse the repository at this point in the history
…ditionally

github: Install requirements unconditionally
  • Loading branch information
p12tic authored Jul 4, 2024
2 parents 1c74d6c + 29195be commit c82859b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
set -e
apt update && apt install -y podman
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Run integration tests
run: |
python -m unittest discover -v tests/integration
Expand Down

0 comments on commit c82859b

Please sign in to comment.