Skip to content

Commit

Permalink
properly skip macos
Browse files Browse the repository at this point in the history
  • Loading branch information
avishniakov committed Oct 12, 2023
1 parent 763f432 commit c12735b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def generate_and_run_project(

# MLFlow Deployer not supported on Windows
# MLFlow `service daemon is not running` error on MacOS
if platform.system().lower() not in ["windows", "macos"]:
if platform.system().lower() not in ["windows", "macos", "darwin"]:
# run the project
call = [sys.executable, "run.py"]

Expand Down

0 comments on commit c12735b

Please sign in to comment.