From eacb226cef7b26f2d9dadeaa233b8e7c2b615f3e Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Fri, 15 Dec 2023 13:01:32 +0100 Subject: [PATCH] Test native extensions in wheel --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7b36422..5386b3c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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' @@ -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())"