Skip to content

Commit ce32f65

Browse files
committed
minor touchups
1 parent ce6aacf commit ce32f65

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pytest_rerunfailures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def pytest_addoption(parser):
3737
dest='only_rerun',
3838
type=str,
3939
default=None,
40-
help='Optional comma seperated list. If passed, only rerun errors matching the regexes provided.'
40+
help='Optional comma separated list. If passed, only rerun errors matching the regexes provided.'
4141
)
4242
group._addoption(
4343
'--reruns',

test_pytest_rerunfailures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def pytest_runtest_logfinish(nodeid, location):
423423
('def test_only_rerun(): raise AssertionError("ERR")', 'ERR', True),
424424
]
425425
)
426-
def test_pytest_only_rerun(testdir, file_text, only_rerun_text, should_rerun):
426+
def test_only_rerun_flag(testdir, file_text, only_rerun_text, should_rerun):
427427
testdir.makepyfile(file_text)
428428

429429
num_failed = 1

0 commit comments

Comments
 (0)