We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e92514a commit 02322adCopy full SHA for 02322ad
scripts/gen_docs.py
@@ -8,7 +8,7 @@
8
print("Generating documentation...")
9
10
# Run pydoctor
11
- subprocess.check_call("pydoctor")
+ subprocess.check_call(["pydoctor", "--quiet"])
12
13
# Copy favicon
14
shutil.copyfile(
tests/conftest.py
@@ -42,6 +42,12 @@
42
from tests.helpers.worker import ExternalPythonWorker, ExternalWorker
43
44
45
+def pytest_runtest_setup(item):
46
+ """Print a newline so that custom printed output starts on new line."""
47
+ if item.config.getoption("-s"):
48
+ print()
49
+
50
51
def pytest_addoption(parser):
52
parser.addoption(
53
"-E",
0 commit comments