Skip to content

Commit 2f7b32b

Browse files
Merge pull request #15 from Innoptech/fix-windows-ci
Fix windows ci
2 parents 061c5b2 + b90bb5b commit 2f7b32b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-to-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Run tests
3737
run: |
3838
python3 -m pip install numpy pytest
39-
OPENBLAS_NUM_THREADS=1 python3 -m pytest
39+
python3 -m pytest
4040
4141
bump_version_and_tag:
4242
if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && !startsWith(github.event.head_commit.message, 'bump:')"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tag_format = "v$version"
3232
[tool.cibuildwheel]
3333
test-command = "pytest {project}/tests"
3434
test-extras = ["test"]
35-
test-skip = ["*universal2:arm64", "pp*", "cp{38,39,310,311,312}-manylinux_i686", "cp38-macosx_arm64", "*musllinux*", "*ppc64le", "*s390x", "cp{39,310,311,312,313}-win32"]
35+
test-skip = ["*universal2:arm64", "pp*", "cp{38,39,310,311,312}-manylinux_i686", "cp38-macosx_arm64", "*musllinux*", "*ppc64le", "*s390x", "cp{39,310,311,312,313}-win32", "cp313*"]
3636
# Setuptools bug causes collision between pypy and cpython artifacts
3737
before-build = "rm -rf {project}/build"
3838

0 commit comments

Comments
 (0)