Skip to content

Commit

Permalink
ci(pytest): disable buffered output
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnhan committed Oct 31, 2024
1 parent e2ca1e8 commit 35d75c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
- name: Test with pytest
if: matrix.python-version != '3.12' || matrix.qt-api != 'pyqt6'
run: |
pytest -vv --full-trace
python -u -m pytest -vv --full-trace
- name: Test with pytest with coverage
if: matrix.python-version == '3.12' && matrix.qt-api == 'pyqt6'
run: |
pytest -vv --full-trace --cov erlab --junitxml=junit.xml
python -u -m pytest -vv --full-trace --cov erlab --junitxml=junit.xml
- name: Upload coverage to Codecov
if: matrix.python-version == '3.12' && matrix.qt-api == 'pyqt6'
Expand Down
1 change: 0 additions & 1 deletion tests/io/test_dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ class ExampleLoader(LoaderBase):
"z",
"polarization",
"photon_flux",
"temp_sample",
)
# Attributes to be used as coordinates. Place all attributes that we don't want
# to lose when merging multiple file scans here.
Expand Down

0 comments on commit 35d75c4

Please sign in to comment.