We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83c64c6 commit ce9d822Copy full SHA for ce9d822
tests/conftest.py
@@ -67,7 +67,9 @@ def batch_info():
67
A batch is the collection of visual checkpoints for a test suite.
68
Batches are displayed in the Eyes Test Manager, so use meaningful names.
69
"""
70
- return BatchInfo("Example: Selenium Python pytest with the Ultrafast Grid")
+
71
+ runner_name = "Ultrafast Grid" if USE_ULTRAFAST_GRID else "Classic runner"
72
+ return BatchInfo(f"Example: Selenium Python pytest with the {runner_name}")
73
74
75
@pytest.fixture(scope='session')
0 commit comments