[e988c2]: / tests / functional / test_isolation_report.py

Download this file

14 lines (10 with data), 277 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import json
import sys
import pytest
@pytest.mark.skipif(
not sys.platform.startswith("linux"),
reason="Subprocess isolation only works on Linux",
)
def test_isolation_report(call_cli):
captured = call_cli("isolation-report")
assert json.loads(captured.out)