github: Install requirements unconditionally

This makes tests less brittle as any renames to requirements files will
be noticed.

Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
Povilas Kanapickas 2024-07-04 09:13:28 +03:00
parent 1c74d6cd11
commit 29195be77c

View File

@ -24,8 +24,8 @@ jobs:
set -e set -e
apt update && apt install -y podman apt update && apt install -y podman
python -m pip install --upgrade pip python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi pip install -r requirements.txt
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi pip install -r test-requirements.txt
- name: Run integration tests - name: Run integration tests
run: | run: |
python -m unittest discover -v tests/integration python -m unittest discover -v tests/integration