Skip to content

Commit

Permalink
Add good runtime comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Nov 15, 2023
1 parent f7b0cfd commit 1603122
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,20 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
: ###############################################################
: # install pip, pytest, and python packages
: # asterisk globbing is fragile, so don't use asterisk path
: # globs. Just call out individual files, below.
: ###############################################################
python -m pip install --upgrade pip
pip install -U pytest
pip install -Ur './requirements/requirements.txt'
pip install -Ur './requirements/requirements-dev.txt'
- name: Run pytest
run: |
: ###############################################################
: # use pytest dot path because it's portable across
: # windows and unix
: ###############################################################
cd tests && pytest .

0 comments on commit 1603122

Please sign in to comment.