diff --git a/.github/workflows/reusable-build-python-integration-test-workflow.yml b/.github/workflows/reusable-build-python-integration-test-workflow.yml index f5c9fba..f8716f7 100644 --- a/.github/workflows/reusable-build-python-integration-test-workflow.yml +++ b/.github/workflows/reusable-build-python-integration-test-workflow.yml @@ -55,6 +55,7 @@ jobs: - name: Run integration tests run: | + source .venv/bin/activate pytest tests/integration/ --cov=./ --cov-report=xml - name: Build package diff --git a/.github/workflows/reusable-build-python-unit-test-workflow.yml b/.github/workflows/reusable-build-python-unit-test-workflow.yml index a392970..0e08b45 100644 --- a/.github/workflows/reusable-build-python-unit-test-workflow.yml +++ b/.github/workflows/reusable-build-python-unit-test-workflow.yml @@ -55,6 +55,7 @@ jobs: - name: Run Unit tests run: | + source .venv/bin/activate pytest tests/unit/ --cov=./ --cov-report=xml - name: Build package