From 76aea0f6ac9a889b50bfaf115027fc7396f37e42 Mon Sep 17 00:00:00 2001 From: Scott White Date: Mon, 18 Sep 2023 14:07:35 -0400 Subject: [PATCH] try calling pytest directly to find the built package --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 276d1b3..38cc386 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: pip install --no-cache-dir -e .[dev,test,lint] python -m black KDEpy -l 120 --check python -m flake8 --show-source --ignore=F811,W293,W391,W292,W291,W504,W503,E231 --max-line-length=120 --exclude="*examples.py,testing.py,*kde.py" KDEpy - python -m pytest KDEpy --doctest-modules --capture=sys + pytest KDEpy --doctest-modules --capture=sys - name: Build docs