Skip to content

Commit

Permalink
Merge pull request #4 from paulsengroup/fix-ci
Browse files Browse the repository at this point in the history
Fix ci
  • Loading branch information
robomics authored Aug 1, 2023
2 parents e9abc7c + e64bd42 commit 8fd741d
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (C) 2023 Roberto Rossini ([email protected])
# SPDX-License-Identifier: MIT

name: Wheels

on:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ filterwarnings = [
]

[tool.cibuildwheel]
test-command = "python -m pytest {project}/test"
test-command = "pytest {project}/test"
test-extras = ["test"]
test-skip = ["*universal2:arm64"]
test-skip = ["*universal2:arm64", "pp*"]

# Setuptools bug causes collision between pypy and cpython artifacts
before-all = [
Expand Down
4 changes: 4 additions & 0 deletions test/test_fetch.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (C) 2023 Roberto Rossini <[email protected]>
#
# SPDX-License-Identifier: MIT

import os

import numpy as np
Expand Down
4 changes: 4 additions & 0 deletions test/test_fetch_accessors.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (C) 2023 Roberto Rossini <[email protected]>
#
# SPDX-License-Identifier: MIT

import os

import pytest
Expand Down
4 changes: 4 additions & 0 deletions test/test_fetch_dense.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (C) 2023 Roberto Rossini <[email protected]>
#
# SPDX-License-Identifier: MIT

import os

import numpy as np
Expand Down
4 changes: 4 additions & 0 deletions test/test_fetch_nnz.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (C) 2023 Roberto Rossini <[email protected]>
#
# SPDX-License-Identifier: MIT

import os

import pytest
Expand Down
4 changes: 4 additions & 0 deletions test/test_fetch_sparse.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (C) 2023 Roberto Rossini <[email protected]>
#
# SPDX-License-Identifier: MIT

import os

import numpy as np
Expand Down
4 changes: 4 additions & 0 deletions test/test_fetch_sum.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Copyright (C) 2023 Roberto Rossini <[email protected]>
#
# SPDX-License-Identifier: MIT

import os

import pytest
Expand Down

0 comments on commit 8fd741d

Please sign in to comment.