Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
stack-name: [local]
os: [windows-latest, ubuntu-latest, macos-13]
Expand Down
4 changes: 4 additions & 0 deletions template/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ settings:
parent_image: 'huggingface/transformers-pytorch-gpu'
build_options:
platform: 'linux/amd64'
python_package_installer_args:
system: null
{%- endif %}
python_package_installer: uv
install_stack_requirements: False
required_integrations:
{%- if cloud_of_choice == 'aws' %}
- aws
Expand Down
9 changes: 8 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@


import os
import sys
import shutil
from typing import Generator

Expand Down Expand Up @@ -99,4 +100,10 @@ def clean_zenml_client(

# remove all traces, and change working directory back to base path
os.chdir(orig_cwd)
shutil.rmtree(str(tmp_path))
if sys.platform == "win32":
try:
shutil.rmtree(str(tmp_path))
except:
pass
else:
shutil.rmtree(str(tmp_path))