(exec_mode, fixtures)
| 54 | |
| 55 | @pytest.mark.parametrize("exec_mode", ("--async", "--no-async")) |
| 56 | def test_simple_cli_analysis(exec_mode, fixtures): |
| 57 | pth = fixtures.path('basic_ast.py') |
| 58 | output = fixtures.scan_test_file("basic_ast.py", args=[exec_mode]) |
| 59 | |
| 60 | assert output["name"].endswith(pth.split("/")[-1]) |
| 61 | assert "url" in output["tags"] |
| 62 | |
| 63 | |
| 64 | @pytest.mark.e2e |
nothing calls this directly
no test coverage detected