Lines Matching refs:pytester
160 def test_if_report_is_parsed(pytester, testinstance: TestInstance): argument
167 test_file = pytester.path / 'test_valid.py'
170 result = pytester.runpytest(
190 def test_if_report_with_error(pytester, testinstance: TestInstance): argument
197 test_file = pytester.path / 'test_error.py'
199 report_file = pytester.path / 'report.xml'
200 result = pytester.runpytest(
224 def test_if_report_with_skip(pytester, testinstance: TestInstance): argument
233 test_file = pytester.path / 'test_skip.py'
235 report_file = pytester.path / 'report.xml'
236 result = pytester.runpytest(
256 def test_if_report_with_filter(pytester, testinstance: TestInstance): argument
264 test_file = pytester.path / 'test_filter.py'
266 report_file = pytester.path / 'report.xml'
267 result = pytester.runpytest(
284 def test_if_report_with_no_collected(pytester, testinstance: TestInstance): argument
290 test_file = pytester.path / 'test_filter.py'
292 report_file = pytester.path / 'report.xml'
293 result = pytester.runpytest(