Skip to content

Commit

Permalink
ci(wrappers/python): explore powershell venv activation script
Browse files Browse the repository at this point in the history
  • Loading branch information
SKalt committed Sep 25, 2024
1 parent 8109fdd commit 6cdf2d9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,17 @@ jobs:
- name: Install dev dependencies
run: ./wrappers/python/scripts/ci/github/install_dev_dependencies.sh

- name: activate venv on windows
if: runner.os == 'Windows'
shell: pwsh
working-directory: ./wrappers/python
run: .\.venv\Scripts\Activate.ps1

- name: debug python paths
run: ./wrappers/python/scripts/ci/github/debug_python_paths.sh

- name: Lint python
if: runner.os == 'Linux'
# if: runner.os == 'Linux'
working-directory: ./wrappers/python
run: |
export VIRTUAL_ENV="$PWD/.venv"
Expand Down

0 comments on commit 6cdf2d9

Please sign in to comment.