From 6ab2c6ae28249fe588af13272b4b2bf621c1fca6 Mon Sep 17 00:00:00 2001 From: Erkan Ozgur Yilmaz Date: Mon, 14 Oct 2024 23:15:16 +0100 Subject: [PATCH] - [#414] Trying to fix Windows workflow (2). --- .github/workflows/pytest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 0ac68fb1..68929f2b 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -175,9 +175,9 @@ jobs: ls -l dist/ $wheel_file = Get-ChildItem -Path dist -Filter DisplayCAL-*.whl pip install $wheel_file.FullName - # $PYPATH = Get-Command python | Select-Object -ExpandProperty Source - # $PYDIR = Split-Path $PYPATH - # Copy-Item -Path "$PYDIR\Lib\site-packages\DisplayCAL\lib64\python${{ env.py_version }}\RealDisplaySizeMM.*.pyd" -Destination "./DisplayCAL/lib64/python${{ env.py_version }}/" + $PYPATH = Get-Command python | Select-Object -ExpandProperty Source + $PYDIR = Split-Path $PYPATH + Copy-Item -Path "$PYDIR\Lib\site-packages\DisplayCAL\lib64\python${{ env.py_version }}\RealDisplaySizeMM.*.pyd" -Destination "./DisplayCAL/lib64/python${{ env.py_version }}/" - name: Test with pytest run: |