Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Disable precommit unit test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
timvink committed Jan 20, 2022
1 parent 3aa0d6f commit b674d1b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_precommit.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import shutil
import git
import os
import sys

from pathlib import Path
from datetime import date
Expand All @@ -19,6 +20,7 @@ def shell_output(command) -> str:
return std_out.strip()


@pytest.mark.skipif(sys.platform == "win32", reason="Hard to debug windows when developing on linux")
def test_precommit_hook(tmp_path):
"""
Tests if the full setup with precommit hooks works properly.
Expand Down

0 comments on commit b674d1b

Please sign in to comment.