Skip to content

Commit

Permalink
suppress micropkg test in win 3.7
Browse files Browse the repository at this point in the history
Signed-off-by: Nok <nok.lam.chan@quantumblack.com>
  • Loading branch information
noklam committed Jul 24, 2023
1 parent 5567507 commit 8a32235
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/framework/cli/micropkg/test_micropkg_package.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
import tarfile
import textwrap
from pathlib import Path
Expand Down Expand Up @@ -39,6 +40,10 @@ def assert_sdist_contents_correct(
}
assert expected_files <= sdist_contents

@pytest.mark.skipif(
sys.platform.startswith("win") and sys.version_info <= (3, 7),
reason="Due to unknown bug in Window Python 3.7",
)
@pytest.mark.parametrize(
"options,package_name,success_message",
[
Expand Down

0 comments on commit 8a32235

Please sign in to comment.