Skip to content

Commit 1df14a1

Browse files
committed
repeat GA
1 parent 36e8a74 commit 1df14a1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,17 @@ jobs:
113113

114114
- name: Install Python package
115115
if: runner.os == 'Windows'
116-
working-directory: python
117116
run: |
117+
Set-Location python
118118
python -m pip install --upgrade pip
119119
python -m pip install .
120120
121121
- name: Run Python test.py
122122
if: runner.os == 'Windows'
123-
working-directory: python
124-
env:
125-
PYTHONPATH: .
126-
run: python -W ignore test/test.py -v
123+
run: |
124+
Set-Location python
125+
$env:PYTHONPATH = "."
126+
python -W ignore test/test.py -v
127127
128128
ros2_tests:
129129
name: ROS2 tests
@@ -211,14 +211,14 @@ jobs:
211211

212212
- name: Install Python package
213213
if: runner.os == 'Windows'
214-
working-directory: python
215214
run: |
215+
Set-Location python
216216
python -m pip install --upgrade pip
217217
python -m pip install .
218218
219219
- name: Run OCP Python tests
220220
if: runner.os == 'Windows'
221-
working-directory: python
222-
env:
223-
PYTHONPATH: .
224-
run: python -W ignore test/test_ocp.py -v
221+
run: |
222+
Set-Location python
223+
$env:PYTHONPATH = "."
224+
python -W ignore test/test_ocp.py -v

0 commit comments

Comments
 (0)