We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d5841 commit bfbc824Copy full SHA for bfbc824
.github/workflows/ci.yml
@@ -36,6 +36,7 @@ jobs:
36
run-tests:
37
runs-on: ${{ matrix.os }}
38
strategy:
39
+ fail-fast: false
40
matrix:
41
stack-name: [local]
42
os: [windows-latest, ubuntu-latest, macos-13]
tests/conftest.py
@@ -14,6 +14,7 @@
14
15
16
import os
17
+import sys
18
import shutil
19
from typing import Generator
20
@@ -99,4 +100,10 @@ def clean_zenml_client(
99
100
101
# remove all traces, and change working directory back to base path
102
os.chdir(orig_cwd)
- shutil.rmtree(str(tmp_path))
103
+ if sys.platform == "win32":
104
+ try:
105
+ shutil.rmtree(str(tmp_path))
106
+ except:
107
+ pass
108
+ else:
109
0 commit comments