We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967a3fb commit 26818b2Copy full SHA for 26818b2
.github/workflows/ci.yaml
@@ -86,4 +86,9 @@ jobs:
86
run: pip install uv && uv pip install --system ".[dev,distributed]"
87
88
- name: Run tests
89
+ if: runner.os != 'Windows'
90
run: pytest --cov=nixtla --reruns 2 --reruns-delay 1 --only-rerun httpx.ConnectError --only-rerun urllib.error.HTTPError nixtla_tests
91
+
92
+ - name: Run tests (Windows)
93
+ if: runner.os == 'Windows'
94
+ run: pytest --cov=nixtla -m "not spark_run" --reruns 2 --reruns-delay 1 --only-rerun httpx.ConnectError --only-rerun urllib.error.HTTPError nixtla_tests
0 commit comments