You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The environment used to run GitHub actions has been updated
upstream, which breaks the build. This is mainly due to the use
of pip. That is, the use of upstream pip and not the one provided
by Debian through apt-get install python3-pip.
This updates all the build scripts to use the standard Debian
packages (if available) and not rely on "pip install".
Signed-off-by: Martin Belanger <[email protected]>
Copy file name to clipboardExpand all lines: TESTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -184,7 +184,7 @@ $ sudo ./nvmet.py clean
184
184
This requires the [Python coverage package](https://coverage.readthedocs.io/en/6.4.1/), which can be installed as follows:
185
185
186
186
```bash
187
-
$ sudo pip install coverage
187
+
$ sudo apt-get install python3-coverage
188
188
```
189
189
190
190
Note that this test cannot be run while `stafd` and `stacd` are running. Make sure to stop `stafd` and `stacd` if they are running (`systemctl stop [stafd|stacd]`). You may also need to mask those services (`systemctl mask [stafd|stacd]`) if coverage fails to start.
0 commit comments