ci: improve job docs

This commit is contained in:
Maximilian Hils 2022-04-28 21:57:58 +02:00 committed by GitHub
parent 8f23a26e35
commit 9d1821e920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -87,11 +87,12 @@ jobs:
- run: pip install tox
- run: tox -e py
if: matrix.os != 'ubuntu-latest'
# make sure that tests run without network connection
- name: Run tox -e py (without internet)
run: |
tox -e py --notest
sudo unshare --net -- sh -c "ip link set lo up; $(which tox) -e py"
# install dependencies (requires internet connectivity)
tox -e py --notest
# run tests with loopback only. We need to sudo for unshare, which means we need an absolute path for tox.
sudo unshare --net -- sh -c "ip link set lo up; $(which tox) -e py"
if: matrix.os == 'ubuntu-latest'
- uses: codecov/codecov-action@a1ed4b322b4b38cb846afb5a0ebfa17086917d27
# mirrored below and at https://github.com/mitmproxy/mitmproxy/settings/actions