diff --git a/testing/test_integration.py b/testing/test_integration.py index 481fe7e9..cf8b038a 100644 --- a/testing/test_integration.py +++ b/testing/test_integration.py @@ -471,3 +471,8 @@ def pytest_runtest_makereport(item, call): 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)