Skip to content

Commit 12d5092

Browse files
committed
fixing testing environment issues
1 parent 62be500 commit 12d5092

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

quaddtype/pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,17 @@ test = [
2626

2727
[tool.cibuildwheel]
2828
archs = ["auto64"]
29-
skip = ["*-musllinux*", "pp*", "cp36-*", "cp37-*", "cp38-*"]
30-
test-command = "pytest {project}/tests"
29+
skip = ["*-musllinux*", "pp*", "cp36-*", "cp37-*", "cp38-*", "cp39-*"]
30+
test-command = """
31+
python -c "import platform; print('Python version:', platform.python_version())"
32+
python -c "import sys; print('sys.platform:', sys.platform)"
33+
ldd --version
34+
uname -a
35+
pip install {package}[test]
36+
pytest {project}/tests
37+
"""
3138
test-extras = ["test"]
39+
manylinux-x86_64-image = "manylinux_2_28"
3240

3341
[tool.cibuildwheel.linux]
3442
before-all = """

0 commit comments

Comments
 (0)