Skip to content

Commit 265d301

Browse files
committed
CI-unixish.yml: use python3
1 parent 3fe85c7 commit 265d301

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/CI-unixish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
4343
- name: Install missing Python packages
4444
run: |
45-
python -m pip install pip --upgrade
46-
python -m pip install pytest
45+
python3 -m pip install pip --upgrade
46+
python3 -m pip install pytest
4747
4848
- name: CMake build on ubuntu (with GUI / system tinyxml2)
4949
if: contains(matrix.os, 'ubuntu')
@@ -119,11 +119,11 @@ jobs:
119119
- name: Run test/cli
120120
run: |
121121
cd test/cli
122-
pytest test-*.py
122+
python3 -m pytest test-*.py
123123
cd ../../..
124124
ln -s cppcheck 'cpp check'
125125
cd 'cpp check/test/cli'
126-
pytest test-*.py
126+
python3 -m pytest test-*.py
127127
128128
# fails on macos since some includes (e.g. sys/epoll.h) are not available
129129
- name: Run cfg tests

0 commit comments

Comments
 (0)