Skip to content

Commit

Permalink
Run ifconfig tests in Python 3 CI
Browse files Browse the repository at this point in the history
Python 3 manylinux CI image does not have net-tools (hence ifconfig)
pre-installed, so tests using it were skippied altogether.

Signed-off-by: Ben Raz <[email protected]>
  • Loading branch information
ben9923 committed Nov 24, 2023
1 parent df25738 commit 93b5f18
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ test-extras = "test"
[tool.cibuildwheel.macos]
archs = ["arm64", "x86_64"]

[tool.cibuildwheel.linux]
before-all = "yum install -y net-tools"

[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk --no-cache add coreutils procps"
Expand Down

0 comments on commit 93b5f18

Please sign in to comment.