File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,18 @@ jobs:
35
35
with :
36
36
python-version : ${{ matrix.python-version }}
37
37
allow-prereleases : true
38
+ - name : Install dependencies
39
+ run : |
40
+ python -m pip install --upgrade pip
41
+ pip install tox
38
42
- name : Setup SocketCAN
39
43
if : ${{ matrix.os == 'ubuntu-latest' }}
40
44
run : |
41
45
sudo apt-get -y install linux-modules-extra-$(uname -r)
42
46
sudo ./test/open_vcan.sh
43
47
- name : Test with pytest via tox
44
48
run : |
45
- pipx run tox -e gh
49
+ tox -e gh
46
50
env :
47
51
# SocketCAN tests currently fail with PyPy because it does not support raw CAN sockets
48
52
# See: https://foss.heptapod.net/pypy/pypy/-/issues/3809
@@ -128,9 +132,13 @@ jobs:
128
132
uses : actions/setup-python@v5
129
133
with :
130
134
python-version : " 3.12"
135
+ - name : Install dependencies
136
+ run : |
137
+ python -m pip install --upgrade pip
138
+ pip install tox
131
139
- name : Build documentation
132
140
run : |
133
- pipx run tox -e docs
141
+ tox -e docs
134
142
135
143
build :
136
144
name : Packaging
You can’t perform that action at this time.
0 commit comments