From 67ab411c29e78aac3071c57738e27577239ed70d Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 2 May 2021 13:32:42 -0400 Subject: test: avoid xdist to ensure coverage is collected --- .github/workflows/coverage.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 2db830d5..0a29fd34 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -66,7 +66,9 @@ jobs: COVERAGE_COVERAGE: "yes" run: | set -xe - python -m tox + # Something about pytest 6.x with xdist keeps data from collecting. + # Use -n0 for now. + python -m tox -- -n 0 - name: "Combine" env: -- cgit v1.2.1