You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/benchmark.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -138,10 +138,10 @@ jobs:
138
138
139
139
- name: Run non-benchmark tests
140
140
working-directory: py-polars
141
-
run: pytest -m 'not benchmark and not debug' -n auto --dist loadgroup
141
+
run: pytest -m 'not benchmark and not debug' -n auto
142
142
143
143
- name: Run non-benchmark tests on new streaming engine
144
144
working-directory: py-polars
145
145
env:
146
146
POLARS_AUTO_NEW_STREAMING: 1
147
-
run: pytest -n auto --dist loadgroup -m "not may_fail_auto_streaming and not slow and not write_disk and not release and not docs and not hypothesis and not benchmark and not ci_only"
147
+
run: pytest -n auto -m "not may_fail_auto_streaming and not slow and not write_disk and not release and not docs and not hypothesis and not benchmark and not ci_only"
Copy file name to clipboardExpand all lines: .github/workflows/test-python.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -91,13 +91,13 @@ jobs:
91
91
92
92
- name: Run tests
93
93
if: github.ref_name != 'main'
94
-
run: pytest -n auto --dist loadgroup -m "not release and not benchmark and not docs"
94
+
run: pytest -n auto -m "not release and not benchmark and not docs"
95
95
96
96
- name: Run tests with new streaming engine
97
97
if: github.ref_name != 'main'
98
98
env:
99
99
POLARS_AUTO_NEW_STREAMING: 1
100
-
run: pytest -n auto --dist loadgroup -m "not may_fail_auto_streaming and not slow and not write_disk and not release and not docs and not hypothesis and not benchmark and not ci_only"
100
+
run: pytest -n auto -m "not may_fail_auto_streaming and not slow and not write_disk and not release and not docs and not hypothesis and not benchmark and not ci_only"
0 commit comments