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 ec086ad commit af4f702Copy full SHA for af4f702
testsuite/drivers/shell.py
@@ -5,10 +5,10 @@
5
class ShellTestDriver(ALSTestDriver):
6
"""
7
Run the test.sh test program.
8
-
9
10
11
- def run(self):
+ def run(self) -> None:
+
12
# This takes care of failing the test in case the return code is
13
# non-zero
14
check_call(
@@ -22,4 +22,5 @@ def run(self):
22
# The following makes the child process inherit the parent process's
23
# environment, in addition to the above environment.
24
ignore_environ=False,
25
+ timeout=15, # seconds
26
)
0 commit comments