diff --git a/.github/workflows/python-package.macos.yml b/.github/workflows/python-package.macos.yml index be0435ff..9f5eb0cd 100644 --- a/.github/workflows/python-package.macos.yml +++ b/.github/workflows/python-package.macos.yml @@ -92,7 +92,7 @@ jobs: if: ${{ matrix.python-version != '3.7' }} run: | echo -e '[run]\nomit = *dihedrals.py,*contact_matrix.py' > .coveragerc - pytest -k Test_ExamplesCLTs -n 8 -vs --cov=./ --cov-report=xml --disable-warnings --cov-config=.coveragerc + pytest -k test_mdc_neighborhood -n 8 -vs --cov=./ --cov-report=xml --disable-warnings --cov-config=.coveragerc - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 with: diff --git a/tests/test_scripts.py b/tests/test_scripts.py index a7678be7..a02d1774 100644 --- a/tests/test_scripts.py +++ b/tests/test_scripts.py @@ -56,7 +56,7 @@ def test_mdc_neighborhood(self): ) print([iCP.stdout.decode().splitlines() for iCP in CP]) print([iCP.stderr.decode().splitlines() for iCP in CP]) - assert _np.unique([iCP.returncode for iCP in CP]) == 0 + assert _np.unique([iCP.returncode for iCP in CP]) == 0, ([iCP.stdout.decode().splitlines() for iCP in CP]+[iCP.stderr.decode().splitlines() for iCP in CP]) def test_mdc_interface(self): with remember_cwd():