Skip to content

Commit ce9d822

Browse files
Updated batch name
1 parent 83c64c6 commit ce9d822

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ def batch_info():
6767
A batch is the collection of visual checkpoints for a test suite.
6868
Batches are displayed in the Eyes Test Manager, so use meaningful names.
6969
"""
70-
return BatchInfo("Example: Selenium Python pytest with the Ultrafast Grid")
70+
71+
runner_name = "Ultrafast Grid" if USE_ULTRAFAST_GRID else "Classic runner"
72+
return BatchInfo(f"Example: Selenium Python pytest with the {runner_name}")
7173

7274

7375
@pytest.fixture(scope='session')

0 commit comments

Comments
 (0)