8000 Test numexpr against pytest-run-parallel on 3.13t by andfoy · Pull Request #504 · pydata/numexpr · GitHub
[go: up one dir, main page]

Skip to content

Test numexpr against pytest-run-parallel on 3.13t #504

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Execute pytest with --pyargs
  • Loading branch information
andfoy committed Mar 5, 2025
commit 0fb95ec22cd1b070bd46b428cb404a4534d1f5c2
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
CIBW_BEFORE_BUILD: pip install setuptools oldest-supported-numpy pytest
CIBW_BEFORE_TEST: pip install pytest
CIBW_BUILD_VERBOSITY: 1
CIBW_TEST_COMMAND: pytest numexpr/tests
CIBW_TEST_COMMAND: pytest --pyargs numexpr
CIBW_TEST_SKIP: "*macosx*arm64*"
# Building for musllinux and aarch64 takes way too much time.
# Moreover, NumPy is not providing musllinux for x86_64 either, so it's not worth it.
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
run: |
echo "CIBW_BEFORE_BUILD=pip install setuptools numpy" >> "$GITHUB_ENV"
echo "CIBW_BEFORE_TEST=pip install pytest pytest-run-parallel" >> "$GITHUB_ENV"
echo "CIBW_TEST_COMMAND=pytest --parallel-threads=4 numexpr/tests" >> "$GITHUB_ENV"
echo "CIBW_TEST_COMMAND=pytest --parallel-threads=4 --pyargs numexpr" >> "$GITHUB_ENV"

- name: Build wheels
run: |
Expand Down
0