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 1603122 commit 5405533
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +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.
: ###############################################################
true ###############################################################
true # install pip, pytest, and python packages
true # asterisk globbing is fragile, so don't use asterisk path
true # globs. Just call out individual files, below.
true ###############################################################
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
: ###############################################################
true ###############################################################
true # use pytest dot path because it's portable across
true # windows and unix
true ###############################################################
cd tests && pytest .

0 comments on commit 5405533

Please sign in to comment.