From 7db4094556774305ec999497ccc26f6600c744fc Mon Sep 17 00:00:00 2001 From: Chunlei Wu Date: Tue, 17 Dec 2024 21:49:08 -0500 Subject: [PATCH] fix: another fix attempt for py36 tests --- .github/workflows/run-tests-py36.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests-py36.yml b/.github/workflows/run-tests-py36.yml index 2da2cae..9ee6f2d 100644 --- a/.github/workflows/run-tests-py36.yml +++ b/.github/workflows/run-tests-py36.yml @@ -1,4 +1,4 @@ -name: Tests on Py2.7 +name: Tests on Py3.6 # Python 3.6 is not officially supported, but this tests allow us # to trigger a test on 3.6 manually, just to see if it still works @@ -26,7 +26,8 @@ jobs: # Install dependencies manually as pyproject.toml is not supported in Python 3.6 # caching dependencies requires Python 3.8+, skipping it for Python 3.6 run: pip install httpx importlib-metadata pandas pytest pytest-asyncio + - run: pwd - name: Run Tests # since we cannot install packages directly from source in Py<3.7, we will use biothings_client # directly from the current working directory - run: PYTHONPATH=. echo $PWD;python -m pytest tests \ No newline at end of file + run: pytest tests \ No newline at end of file