We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89b2fdd commit 1934509Copy full SHA for 1934509
1 file changed
test/test_git.py
@@ -2,6 +2,8 @@
2
3
import itertools
4
import logging
5
+import platform
6
+import unittest
7
8
import boilerplates.git_repo_tests
9
@@ -11,6 +13,9 @@
11
13
_LOG = logging.getLogger(__name__)
12
14
15
16
+@unittest.skipIf(
17
+ platform.system() == 'Windows' and platform.python_implementation() == 'PyPy',
18
+ 'skipping as these tests fail on Windows with PyPy')
19
class Tests(boilerplates.git_repo_tests.GitRepoTests):
20
"""Test suite for automated tests of generated git repositories.
21
0 commit comments