diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f016d321..02ab7e19 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -87,15 +87,19 @@ jobs: - name: Install dependencies run: | set -x - pip install --upgrade pip tox codecov + python3 -m venv venv + . ./venv/bin/activate + ./venv/bin/pip install --require-virtualenv --upgrade pip tox codecov - name: Coverage run: | + . ./venv/bin/activate tox -e coverage codecov - name: Integration run: | + . ./venv/bin/activate integration/run-integration-tests publish: