File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -47,14 +47,17 @@ jobs:
4747
4848 - name : Run fast tests in parallel
4949 run : |
50- pytest \
51- tests/streaming tests/utilities \
52- tests/test_cli.py tests/test_debugger.py \
53- -n 2 --cov=litdata --cov-append --cov-report= -- durations=120
50+ pytest tests \
51+ --ignore= tests/processing \
52+ --ignore= tests/raw \
53+ -n 2 --cov=litdata --durations=120
5454
5555 - name : Run processing tests sequentially
5656 run : |
57- pytest tests/processing tests/raw --cov=litdata --cov-append --cov-report= --durations=90
57+ # note that the listed test should match ignored in the previous step
58+ pytest \
59+ tests/processing tests/raw \
60+ --cov=litdata --cov-append --durations=90
5861
5962 - name : Statistics
6063 continue-on-error : true
You can’t perform that action at this time.
0 commit comments