Skip to content

Commit

Permalink
chore: skip git tests on faulty platform
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdevpl committed Aug 15, 2023
1 parent 89b2fdd commit 1934509
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import itertools
import logging
import platform
import unittest

import boilerplates.git_repo_tests

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


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

0 comments on commit 1934509

Please sign in to comment.