()
| 26 | |
| 27 | |
| 28 | def test_yaml(): |
| 29 | test_dir = test_env.get_test_loc('yaml/simple') |
| 30 | result_file = test_env.get_temp_file('yaml') |
| 31 | run_scan_click(['-clip', test_dir, '--yaml', result_file]) |
| 32 | expected = test_env.get_test_loc('yaml/simple-expected.yaml') |
| 33 | check_yaml_scan(expected, result_file, regen=REGEN_TEST_FIXTURES) |
| 34 | |
| 35 | |
| 36 | @pytest.mark.scanslow |
nothing calls this directly
no test coverage detected