We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f03228 commit c19d995Copy full SHA for c19d995
1 file changed
.github/workflows/ci.yaml
@@ -42,16 +42,16 @@ jobs:
42
with:
43
python-version: ${{ matrix.python-version }}
44
45
- - name: Run tests without cloudpathlib
+ - name: Run non-cloud tests
46
run: |
47
uv run pytest \
48
- -m "not cloud" \
+ -m "not cloud and not benchmark" \
49
--junitxml=pytest-cloudless.xml \
50
--cov-report=xml:coverage.xml \
51
- --cov bids2table \
+ --cov=bids2table \
52
tests
53
54
- - name: Run tests with cloudpathlib
+ - name: Run cloud tests
55
56
uv run --extra cloud pytest \
57
-m "cloud" \
0 commit comments