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