Skip to content

Commit

Permalink
Echo dependency versions in runners (#220)
Browse files Browse the repository at this point in the history
* echo dependency versions in runners
  • Loading branch information
aaraney committed May 19, 2023
1 parent 6517e72 commit 0e8c85c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/run_slow_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
python3 -m pip install ./python/metrics[develop]
python3 -m pip install ./python/nwm_client_new[develop]
python3 -m pip install ./python/svi_client[develop]
- name: Echo dependency versions
run: |
python3 -m pip freeze
- name: Run all unittests
run: |
python3 -m pytest -s
3 changes: 3 additions & 0 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
python3 -m pip install ./python/events[develop]
python3 -m pip install ./python/metrics[develop]
python3 -m pip install ./python/svi_client[develop]
- name: Echo dependency versions
run: |
python3 -m pip freeze
- name: Run all unittests
run: |
python3 -m pytest -s -m "not slow"

0 comments on commit 0e8c85c

Please sign in to comment.