diff --git a/.github/workflows/docker-integration.yml b/.github/workflows/docker-integration.yml index 2e918780..1333b103 100644 --- a/.github/workflows/docker-integration.yml +++ b/.github/workflows/docker-integration.yml @@ -38,8 +38,8 @@ jobs: - name: Install test dependencies run: | python -m pip install --upgrade pip - python -m pip install pytest requests + python -m pip install pytest pytest-cov requests - name: Run uWSGI integration tests run: | - pytest tests/docker/uwsgi/ -v --tb=short -p no:cov + pytest tests/docker/uwsgi/ -v --tb=short diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml index 060f40ca..120cc909 100644 --- a/.github/workflows/freebsd.yml +++ b/.github/workflows/freebsd.yml @@ -40,7 +40,7 @@ jobs: python${{ matrix.python-version }} -m venv venv . venv/bin/activate pip install --upgrade pip - pip install pytest pytest-cov coverage + pip install pytest pytest-cov pytest-asyncio coverage pip install -e . pytest --cov=gunicorn -v tests/ \ --ignore=tests/workers/test_ggevent.py \