From 8e0402bcf0d8436adf3e8b4f980d1f9d6ec1f673 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Thu, 25 Mar 2021 10:52:36 -0400 Subject: [PATCH] Work around https://github.com/pytest-dev/pytest/issues/1596 --- .github/workflows/cli-integration.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cli-integration.yml b/.github/workflows/cli-integration.yml index 323b22701..f0d389b49 100644 --- a/.github/workflows/cli-integration.yml +++ b/.github/workflows/cli-integration.yml @@ -58,5 +58,7 @@ jobs: run: pip install "dandi[test] @ git+https://github.com/dandi/dandi-cli" - name: Run dandi-api tests in dandi-cli - run: python -m pytest -s -v --dandi-api --pyargs dandi + run: | + python -m pytest -s -v --dandi-api \ + "$pythonLocation/lib/python${{ matrix.python }}/site-packages/dandi" working-directory: /tmp