We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 671a528 commit f9e9b93Copy full SHA for f9e9b93
2 files changed
src/pytest_forked/__init__.py
@@ -71,7 +71,7 @@ def runforked():
71
return [runner.TestReport(**x) for x in report_dumps]
72
else:
73
if result.exitstatus == EXITSTATUS_TESTEXIT:
74
- pytest.exit("forked test item %s raised Exit" % (item,))
+ pytest.exit(f"forked test item {item} raised Exit")
75
return [report_process_crash(item, result)]
76
77
testing/test_xfail_behavior.py
@@ -1,4 +1,3 @@
1
-# -*- coding: utf-8 -*-
2
"""Tests for xfail support."""
3
import os
4
import signal
0 commit comments