Skip to content

Commit f6b990a

Browse files
add selfc to slow, improve slow listing
1 parent 6981a39 commit f6b990a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
# Stop run immediately if these commands fail
107107
FAST_FAIL = ["self", "lint"]
108108

109-
EXTRA_COMMANDS = ("pytest-extra", "mypyc-fast", "mypyc-extra")
109+
EXTRA_COMMANDS = ("pytest-extra", "mypyc-fast", "mypyc-extra", "selfc")
110110
DEFAULT_COMMANDS = [cmd for cmd in cmds if cmd not in EXTRA_COMMANDS]
111111

112112
assert all(cmd in cmds for cmd in FAST_FAIL)
@@ -162,7 +162,7 @@ def main() -> None:
162162
print()
163163
print(
164164
"Run the given tests. If given no arguments, run everything except"
165-
+ " pytest-extra and mypyc-extra. Unrecognized arguments will be"
165+
+ f" the slowest commands {EXTRA_COMMANDS}. Unrecognized arguments will be"
166166
+ " interpreted as individual test names / substring expressions"
167167
+ " (or, if they end in .test, individual test files)"
168168
+ " and this script will try to run them."

0 commit comments

Comments
 (0)