Skip to content

Commit

Permalink
Skip grout -h test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavsingh committed Aug 12, 2024
1 parent 70cfb7a commit 4fd9177
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_grout.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@
"""
import sys

import pytest
import unittest

from proxy import grout
from proxy.common.constants import IS_WINDOWS


@pytest.mark.skipif(
IS_WINDOWS,
reason="sys.argv replacement don't really work on windows",
)
class TestGrout(unittest.TestCase):

def test_grout(self) -> None:
Expand Down

0 comments on commit 4fd9177

Please sign in to comment.