Skip to content

Commit

Permalink
do not install numpy/pandas for release tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Oct 6, 2023
1 parent 133fc86 commit a58bbf5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/releasebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:
CIBW_BUILD: ${{matrix.python_tag}}
CIBW_ARCHS: ${{matrix.arch}}
CIBW_TEST_SKIP: "{*-win32,pp37-*}"
CIBW_TEST_REQUIRES: pytest hypothesis pandas
#CIBW_TEST_REQUIRES: pytest hypothesis pandas
CIBW_TEST_REQUIRES: pytest hypothesis
CIBW_TEST_COMMAND: pytest {package}/tests
CIBW_BUILD_VERBOSITY: 3

Expand Down Expand Up @@ -144,7 +145,8 @@ jobs:
CIBW_BUILD: ${{matrix.python_tag}}
CIBW_ARCHS: ${{matrix.arch}}
CIBW_TEST_SKIP: "{*-macosx_{arm64,universal2},pp*-macosx_*}"
CIBW_TEST_REQUIRES: pytest hypothesis pandas
#CIBW_TEST_REQUIRES: pytest hypothesis pandas
CIBW_TEST_REQUIRES: pytest hypothesis
CIBW_TEST_COMMAND: pytest {package}/tests
CIBW_BUILD_VERBOSITY: 3

Expand Down Expand Up @@ -197,7 +199,8 @@ jobs:
CIBW_ARCHS_LINUX: ${{matrix.arch}}
CIBW_BUILD: ${{matrix.python_tag}}
CIBW_TEST_SKIP: "{*_{aarch64,ppc64le,s390x,i686},*musllinux_*,pp38-*}"
CIBW_TEST_REQUIRES: pytest hypothesis pandas
#CIBW_TEST_REQUIRES: pytest hypothesis pandas
CIBW_TEST_REQUIRES: pytest hypothesis
CIBW_TEST_COMMAND: pytest {package}/tests
# CIBW_TEST_COMMAND: "{package}/tools/seg_wrapper.sh pytest {package}/tests"
CIBW_BUILD_VERBOSITY: 3
Expand Down

0 comments on commit a58bbf5

Please sign in to comment.