Skip to content

Commit 072d420

Browse files
authored
fix tests on py3.6 and lint on 3.9 (#108)
* fix tests on py3.6 * fix pre-commit rst backticks
1 parent 9489ad8 commit 072d420

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,9 @@ may need to be setup or torn down for the test (the exact affected
218218
fixtures depends on which scope they are and whether other tests will
219219
still use the same fixture). If the timeouts really are too short to
220220
include fixture durations, firstly make the timeouts larger ;). If
221-
this really isn't an option a `timeout_func_only` boolean setting
221+
this really isn't an option a ``timeout_func_only`` boolean setting
222222
exists which can be set in the pytest ini configuration file, as
223-
documented in `pytest --help`.
223+
documented in ``pytest --help``.
224224

225225

226226
Debugger Detection

test_pytest_timeout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def test_foo():
8787
"""
8888
)
8989
result = testdir.runpytest(
90-
"--timeout=1", "--cov=test_cov.py", "--timeout-method=thread"
90+
"--timeout=1", "--cov=test_cov", "--timeout-method=thread"
9191
)
9292
result.stderr.fnmatch_lines(
9393
[

0 commit comments

Comments
 (0)