Skip to content

Commit d589f39

Browse files
committed
Disable tests
1 parent fd4ee82 commit d589f39

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/build_wheels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515

1616
- name: Build wheels
1717
uses: pypa/[email protected]
18-
env:
19-
CIBW_SKIP: "cp36-*"
18+
# env:
19+
# CIBW_SKIP: "cp36-*"
2020

2121
- uses: actions/upload-artifact@v3
2222
with:

pyproject.toml

-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ requires = [
66
build-backend = "setuptools.build_meta"
77

88
[tool.cibuildwheel]
9-
test-command = "pytest {project}/tests"
10-
test-extras = ["test"]
119
before-build = "rm -rf {project}/build"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
132132
long_description=open('README.md').read(),
133133
long_description_content_type='text/markdown',
134134
ext_modules=[CMakeExtension("cmake_example")],
135-
extras_require={"test": ["pytest>=6.0"]},
135+
# extras_require={"test": ["pytest>=6.0"]},
136136
cmdclass={"build_ext": CMakeBuild},
137137
zip_safe=False,
138138
python_requires=">=3.7",

0 commit comments

Comments
 (0)