diff --git a/testing/test_integration.py b/testing/test_integration.py index 481fe7e..cf8b038 100644 --- a/testing/test_integration.py +++ b/testing/test_integration.py @@ -471,3 +471,8 @@ class TestHTML: assert_that(str(element)).is_equal_to( f'' ) + + def test_xdist(self, pytester): + pytester.makepyfile("def test_xdist(): pass") + page = run(pytester, "report.html", "-n1") + assert_results(page, passed=1)