Skip to content

Commit 95048a1

Browse files
committed
list installed pip deps in test run
1 parent ece5508 commit 95048a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/run-pytest-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip
2323
python -m pip install -e .[full,test]
24+
- name: List installed deps
25+
run: pip list
2426
- name: Run Tests
25-
run: pytest --cov=./ --cov-report=html
27+
run: pytest --cov=./ --cov-report=html --color=yes yt_xarray
2628

2729
- name: Upload coverage report
2830
if: (matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11')

0 commit comments

Comments
 (0)