Skip to content

Commit

Permalink
build: 👷 added a tmate debug session
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed Dec 18, 2024
1 parent 7db4094 commit 4737d5a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run-tests-py36.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ 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
- run: pwd; ls -l
- 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: pytest tests
run: pytest tests
# Enable tmate debugging of the previous steps fail
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ failure() }}
with:
limit-access-to-actor: true

0 comments on commit 4737d5a

Please sign in to comment.