diff options
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 07ae015..0a6958f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,9 +25,10 @@ jobs: - name: install test deps run: | pdm install -dG test - pip install pytest + # pip install pytest - name: test api run: | cd tests - python -m test-api.py
\ No newline at end of file + pdm venv activate in-project + pdm run test-api.py
\ No newline at end of file |
