From a4030ff6fbd64d14ef8b68b762311e3149e88c2b Mon Sep 17 00:00:00 2001 From: CodyCBakerPhD Date: Wed, 4 Sep 2024 15:11:29 -0400 Subject: [PATCH] fix CI --- .github/workflows/read-nwbfile-tests.yml | 2 +- .github/workflows/streaming-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/read-nwbfile-tests.yml b/.github/workflows/read-nwbfile-tests.yml index c1aa5214b..1201485c2 100644 --- a/.github/workflows/read-nwbfile-tests.yml +++ b/.github/workflows/read-nwbfile-tests.yml @@ -30,7 +30,7 @@ jobs: run: conda install -c conda-forge h5py - name: Run pytest on streaming-based read_nwbfile tests - run: pytest tests/read_nwbfile_streaming_tests.py -rsx --cov=nwbinspector --cov-report xml:./coverage.xml + run: pytest -rsx --cov=nwbinspector --cov-report xml:./coverage.xml tests/read_nwbfile_streaming_tests.py - if: ${{ matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest' }} name: Upload coverage to Codecov diff --git a/.github/workflows/streaming-tests.yml b/.github/workflows/streaming-tests.yml index 395cc2f1e..4686511ce 100644 --- a/.github/workflows/streaming-tests.yml +++ b/.github/workflows/streaming-tests.yml @@ -25,7 +25,7 @@ jobs: run: pip install ".[dandi]" - name: Run pytest on stream tests with coverage - run: pytest tests/streaming_tests.py -rsx --cov=nwbinspector --cov-report xml:./coverage.xml + run: pytest -rsx --cov=nwbinspector --cov-report xml:./coverage.xml tests/streaming_tests.py - if: ${{ matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest' }} name: Upload coverage to Codecov