We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a545773 commit c784126Copy full SHA for c784126
.coveragerc
@@ -1,5 +1,5 @@
1
[run]
2
-source=pytest_subprocess
+source = pytest_subprocess
3
4
[report]
5
# Regexes for lines to exclude from consideration
@@ -20,5 +20,4 @@ exclude_lines =
20
if 0:
21
if __name__ == .__main__.:
22
23
-omit = setup.py
24
ignore_errors = True
noxfile.py
@@ -1,3 +1,5 @@
+from pathlib import Path
+
import nox
@@ -10,7 +12,8 @@ def tests(session):
10
12
"--junitxml=junit.xml",
11
13
"-o",
14
"junit_family=legacy",
- *session.posargs
15
+ *session.posargs,
16
+ env={"PYTHONPATH": str(Path(__file__).resolve().parent)}
17
)
18
19
0 commit comments