diff --git a/.github/workflows/docker-integration.yml b/.github/workflows/docker-integration.yml index c63c7bff..2e918780 100644 --- a/.github/workflows/docker-integration.yml +++ b/.github/workflows/docker-integration.yml @@ -42,4 +42,4 @@ jobs: - name: Run uWSGI integration tests run: | - pytest tests/docker/uwsgi/ -v --tb=short + pytest tests/docker/uwsgi/ -v --tb=short -p no:cov diff --git a/pyproject.toml b/pyproject.toml index 7803dc55..3fecbd30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,7 +71,7 @@ main = "gunicorn.app.pasterapp:serve" [tool.pytest.ini_options] # # can override these: python -m pytest --override-ini="addopts=" -norecursedirs = ["examples", "lib", "local", "src"] +norecursedirs = ["examples", "lib", "local", "src", "tests/docker"] testpaths = ["tests/"] addopts = "--assert=plain --cov=gunicorn --cov-report=xml"