File tree 1 file changed +0
-14
lines changed
1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change 1
1
import contextlib
2
- import shutil
3
2
import subprocess
4
3
import sys
5
4
import textwrap
6
5
7
6
import pytest
8
7
9
- from cibuildwheel .ci import CIProvider , detect_ci_provider
10
8
from cibuildwheel .util .file import CIBW_CACHE_PATH
11
9
12
10
from . import test_projects , utils
@@ -47,12 +45,6 @@ def test_pyodide_build(tmp_path, use_pyproject_toml):
47
45
if sys .platform == "win32" :
48
46
pytest .skip ("emsdk doesn't work correctly on Windows" )
49
47
50
- if not shutil .which ("python3.12" ):
51
- pytest .skip ("Python 3.12 not installed" )
52
-
53
- if detect_ci_provider () == CIProvider .travis_ci :
54
- pytest .skip ("Python 3.12 is just a non-working pyenv shim" )
55
-
56
48
if use_pyproject_toml :
57
49
basic_project .files ["pyproject.toml" ] = textwrap .dedent (
58
50
"""
@@ -92,12 +84,6 @@ def test_pyodide_version_incompatible(tmp_path, capfd):
92
84
if sys .platform == "win32" :
93
85
pytest .skip ("emsdk doesn't work correctly on Windows" )
94
86
95
- if not shutil .which ("python3.12" ):
96
- pytest .skip ("Python 3.12 not installed" )
97
-
98
- if detect_ci_provider () == CIProvider .travis_ci :
99
- pytest .skip ("Python 3.12 is just a non-working pyenv shim" )
100
-
101
87
basic_project .generate (tmp_path )
102
88
103
89
with pytest .raises (subprocess .CalledProcessError ):
You can’t perform that action at this time.
0 commit comments