diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 9f410f1..b5b800f 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -29,13 +29,14 @@ jobs: - name: Install dependencies run: | - python -m venv testenv - source testenv/bin/activate - python -m pip install --upgrade pip pip install pytest pip install -r requirements.txt + - name: Log pytest config + run: | + pytest --trace-config + - name: Test with pytest run: | python -m pytest tests