diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cc6de798..dbaaec18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -103,6 +103,7 @@ jobs: - name: install run: | python -m pip install -e .[test] + python -m pip install pytest-codspeed python -c "import sys, psygnal; sys.exit(0 if psygnal._compiled else 1)" env: HATCH_BUILD_HOOKS_ENABLE: "1" diff --git a/pyproject.toml b/pyproject.toml index 719712be..78fb60de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,6 @@ test = [ "pydantic", "pyinstaller>=4.0", "pytest>=6.0", - "pytest-codspeed", "pytest-cov", "wrapt", "msgspec ; python_version >= '3.8'", @@ -117,7 +116,7 @@ skip = ["*-manylinux_i686", "*-musllinux_i686", "*-win32", "pp*"] build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"] test-extras = ["test"] test-command = "pytest {project}/tests -v" -test-skip = "*-musllinux*" +test-skip = ["*-musllinux*", "cp312-win*", "*-macosx_arm64"] [[tool.cibuildwheel.overrides]] select = "*-manylinux_i686*"