From 259a6cc26644b9e64bc3b67b3053f6a1b52599f2 Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Mon, 14 Aug 2023 13:18:35 -0500 Subject: [PATCH] Run `pytest` as a module` --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6b5d01fe..bad9c4ba 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -69,7 +69,7 @@ jobs: - name: Run Tests run: | - pytest -v --cov=openff --cov-config=setup.cfg openff/qcsubmit/tests/ --cov-report=xml + python -m pytest -v --cov=openff --cov-config=setup.cfg openff/qcsubmit/tests/ --cov-report=xml - name: Codecov uses: codecov/codecov-action@v1