We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe85c7 commit 265d301Copy full SHA for 265d301
1 file changed
.github/workflows/CI-unixish.yml
@@ -42,8 +42,8 @@ jobs:
42
43
- name: Install missing Python packages
44
run: |
45
- python -m pip install pip --upgrade
46
- python -m pip install pytest
+ python3 -m pip install pip --upgrade
+ python3 -m pip install pytest
47
48
- name: CMake build on ubuntu (with GUI / system tinyxml2)
49
if: contains(matrix.os, 'ubuntu')
@@ -119,11 +119,11 @@ jobs:
119
- name: Run test/cli
120
121
cd test/cli
122
- pytest test-*.py
+ python3 -m pytest test-*.py
123
cd ../../..
124
ln -s cppcheck 'cpp check'
125
cd 'cpp check/test/cli'
126
127
128
# fails on macos since some includes (e.g. sys/epoll.h) are not available
129
- name: Run cfg tests
0 commit comments