From 1f71f4952ee81bb982dbc3a9cdb1ce406ac0e37c Mon Sep 17 00:00:00 2001 From: Sebastien Morais Date: Mon, 18 Mar 2024 13:44:15 +0100 Subject: [PATCH] FIX: Wrong virtual env path --- .github/workflows/test_python_version.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_python_version.yml b/.github/workflows/test_python_version.yml index 54bb88cfe02..e8605b0beae 100644 --- a/.github/workflows/test_python_version.yml +++ b/.github/workflows/test_python_version.yml @@ -1,4 +1,4 @@ -name: Documentation Build +name: Use test target with multiple python version on: [pull_request, workflow_dispatch] @@ -10,7 +10,7 @@ concurrency: jobs: smoke-tests-with-install-target: - name: Tests | Python ${{ matrix.python-version }} | Target ${{ matrix.install_target}}) + name: Tests | Python ${{ matrix.python-version }} runs-on: [Windows, self-hosted, pyaedt] strategy: fail-fast: false @@ -38,7 +38,7 @@ jobs: .venv\Scripts\Activate.ps1 pip install . pip install .[tests] - Copy-Item -Path "C:\actions-runner\opengl32.dll" -Destination "testenv_s\Lib\site-packages\vtkmodules" -Force + Copy-Item -Path "C:\actions-runner\opengl32.dll" -Destination ".venv\Lib\site-packages\vtkmodules" -Force python -c "import pyaedt; print('Imported pyaedt')" - name: 'Unit testing'