Skip to content

Commit 1934509

Browse files
committed
chore: skip git tests on faulty platform
1 parent 89b2fdd commit 1934509

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

test/test_git.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import itertools
44
import logging
5+
import platform
6+
import unittest
57

68
import boilerplates.git_repo_tests
79

@@ -11,6 +13,9 @@
1113
_LOG = logging.getLogger(__name__)
1214

1315

16+
@unittest.skipIf(
17+
platform.system() == 'Windows' and platform.python_implementation() == 'PyPy',
18+
'skipping as these tests fail on Windows with PyPy')
1419
class Tests(boilerplates.git_repo_tests.GitRepoTests):
1520
"""Test suite for automated tests of generated git repositories.
1621

0 commit comments

Comments
 (0)