Skip to content

Commit 334712d

Browse files
committed
Try fixing pytest
1 parent 6f0c0d0 commit 334712d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ jobs:
8585
env:
8686
CIBW_ARCHS_MACOS: "x86_64 arm64"
8787
CIBW_ARCHS_LINUX: ${{ fromJson(needs.generate_matrix.outputs.CIBW_ARCHS_LINUX) }}
88-
# CIBW_TEST_REQUIRES: pytest
89-
# CIBW_TEST_EXTRAS: "test36"
90-
# CIBW_TEST_COMMAND: "pytest {package}/test"
88+
CIBW_TEST_REQUIRES: pytest
89+
CIBW_TEST_EXTRAS: "py36"
90+
CIBW_TEST_COMMAND: "pytest {package}/test"
9191

9292
- uses: actions/upload-artifact@v3
9393
with:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def initialize_options(self):
6161
extras_require={
6262
'scikit-learn': ['scikit-learn'],
6363
'example': ['scikit-learn', 'matplotlib'],
64-
# 'py36': ['scikit-learn', 'matplotlib', 'pytest'],
64+
'py36': ['scikit-learn', 'matplotlib', 'pytest'],
6565
},
6666
zip_safe=False,
6767

0 commit comments

Comments
 (0)