Skip to content

Commit

Permalink
fix: pwsh multi-line syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgepiloto committed Jun 13, 2024
1 parent 1b07704 commit 48de822
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ jobs:
run: |
python -m venv .venv
.venv\Scripts\Activate.ps1
python -m pip install --upgrade \
--trusted-host pypi.org \
--trusted-host pypi.python.org \
--trusted-host files.pythonhosted.org \
python -m pip install --upgrade `
--trusted-host pypi.org `
--trusted-host pypi.python.org `
--trusted-host files.pythonhosted.org `
pip
- name: "Install tests dependencies"
Expand All @@ -255,7 +255,7 @@ jobs:
run: |
.venv\Scripts\Activate.ps1
python -m pip uninstall --yes vtk
python -m pip install --extra-index-url https://wheels.vtk.org \
python -m pip install --extra-index-url https://wheels.vtk.org `
vtk-osmesa==${{ env.VTK_OSMESA_VERSION }}
- name: Run tests on _unittest
Expand All @@ -269,10 +269,10 @@ jobs:
command: |
.venv\Scripts\Activate.ps1
pytest ${{ matrix.tests.flags }} \
--durations=50 -v \
--cov=pyaedt --cov-report=xml --cov-report=html \
--junitxml=junit/test-results.xml \
pytest ${{ matrix.tests.flags }} `
--durations=50 -v `
--cov=pyaedt --cov-report=xml --cov-report=html `
--junitxml=junit/test-results.xml `
${{ matrix.tests.folder }}
- name: "Upload ${{ matrix.tests.label }} tests coverage"
Expand Down

0 comments on commit 48de822

Please sign in to comment.