We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3c086 commit 1c792c8Copy full SHA for 1c792c8
1 file changed
.github/workflows/tests.yml
@@ -34,11 +34,10 @@ jobs:
34
35
- name: Install package with test extra
36
run: |
37
+ sudo apt update && sudo apt install -yq proot
38
python -m pip install --upgrade pip
39
pip install -e '.[test]'
40
- # The offline suite needs neither proot nor network access; the opt-in
41
- # live tests stay skipped because RUN_LIVE_TESTS is unset.
42
- name: Unit tests
43
run: python -m pytest tests/unit
44
@@ -47,3 +46,6 @@ jobs:
47
46
48
- name: Security tests
49
run: python -m pytest tests/security
+
50
+ - name: Live tests
51
+ run: RUN_LIVE_TESTS=1 python -m pytest -q tests/live
0 commit comments