Skip to content

Commit

Permalink
fix: another fix attempt for py36 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed Dec 18, 2024
1 parent 835b968 commit 7db4094
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run-tests-py36.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
run: pytest tests

0 comments on commit 7db4094

Please sign in to comment.