Skip to content

Commit

Permalink
Test native extensions in wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
titusz committed Dec 15, 2023
1 parent 93dd8ff commit eacb226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
source venv/bin/activate
pip install dist/*.whl
python -c "import iscc_core; iscc_core.conformance_selftest()"
python -c "import iscc_core; assert iscc_core.turbo()"
python -c "import iscc_core; print(iscc_core.turbo())"
- name: Test Wheel Installation on Windows
if: runner.os == 'Windows'
Expand All @@ -62,4 +62,4 @@ jobs:
$wheelFile = (Get-ChildItem dist/*.whl -Name)
pip install "dist/$wheelFile"
python -c "import iscc_core; iscc_core.conformance_selftest()"
python -c "import iscc_core; assert iscc_core.turbo()"
python -c "import iscc_core; print(iscc_core.turbo())"

0 comments on commit eacb226

Please sign in to comment.