| py = '3.10', heap = ('-h', '64')
|
|
|
| @pytest.mark.parametrize("heap", [tuple(), ("-h", "0"), ("-h", "64")])
|
| @allpythons()
|
| def test_accuracy_fast_recursive(py, heap):
|
| result = austin("-i", "1ms", "-P", *heap, *python(py), target("recursive.py"))
|
| > assert result.returncode == 0, result.stderr or result.stdout
|
| E AssertionError:
|
| E ā Cannot launch the given command or it terminated too quickly.
|
| E
|
| E assert 33 == 0
|
| E + where 33 = CompletedProcess(args=['src/austin', '-i', '1ms', '-P', '-h', '64', 'python3.10', '/home/runner/work/austin/austin/test/targets/recursive.py'], returncode=33, stdout='', stderr='\nā Cannot launch the given command or it terminated too quickly.\n').returncode
|
|
|
| test/integrity/test_accuracy.py:38: AssertionError
|