From 70056c70a9ea8a152aeaeed3212ee8e67fa69045 Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Fri, 15 Dec 2023 00:23:42 +0100 Subject: [PATCH] Fix windows CI wheel installation --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b44d097..660b6fe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -57,5 +57,6 @@ jobs: run: | python -m venv venv venv\Scripts\Activate.ps1 - pip install iscc-core --no-index -f dist + $wheelFile = (Get-ChildItem dist/*.whl -Name) + pip install "dist/$wheelFile" python -c "import iscc_core; iscc_core.conformance_selftest()"