From d589f39a9f4b9beb1f5f7e81d66f08ab7edebb2d Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Wed, 3 Jan 2024 20:34:43 -0500 Subject: [PATCH] Disable tests --- .github/workflows/build_wheels.yml | 4 ++-- pyproject.toml | 2 -- setup.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 8d65a08..2cbc79e 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -15,8 +15,8 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.16.2 - env: - CIBW_SKIP: "cp36-*" + # env: + # CIBW_SKIP: "cp36-*" - uses: actions/upload-artifact@v3 with: diff --git a/pyproject.toml b/pyproject.toml index 57d1c74..1840947 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,4 @@ requires = [ build-backend = "setuptools.build_meta" [tool.cibuildwheel] -test-command = "pytest {project}/tests" -test-extras = ["test"] before-build = "rm -rf {project}/build" \ No newline at end of file diff --git a/setup.py b/setup.py index 36323db..260319a 100644 --- a/setup.py +++ b/setup.py @@ -132,7 +132,7 @@ def build_extension(self, ext: CMakeExtension) -> None: long_description=open('README.md').read(), long_description_content_type='text/markdown', ext_modules=[CMakeExtension("cmake_example")], - extras_require={"test": ["pytest>=6.0"]}, + # extras_require={"test": ["pytest>=6.0"]}, cmdclass={"build_ext": CMakeBuild}, zip_safe=False, python_requires=">=3.7",