Skip to content

Commit d753c6a

Browse files
committed
Explicitly require dot output type in the test
1 parent f948d41 commit d753c6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_fixtrue_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def arg1(request):
2222
sub1.join("test_in_sub1.py").write("def test_1(arg1): pass")
2323
sub2.join("test_in_sub2.py").write("def test_2(arg1): pass")
2424

25-
result = testdir.runpytest_subprocess('--fixture-graph', '-s')
25+
result = testdir.runpytest_subprocess('--fixture-graph', '-s', '--fixture-graph-output-type', 'dot')
2626

2727
result.stdout.fnmatch_lines("created artifacts/fixture-graph-sub1-test_in_sub1.py__test_1.dot.")
2828
result.stdout.fnmatch_lines('created artifacts/fixture-graph-sub1-sub2-test_in_sub2.py__test_2.dot.')

0 commit comments

Comments
 (0)