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.
2 parents 9e3e6a2 + b191c89 commit c73bb6bCopy full SHA for c73bb6b
testsuite/drivers/shell.py
@@ -1,5 +1,4 @@
1
from drivers import ALSTestDriver
2
-from e3.testsuite.process import check_call
3
4
5
class ShellTestDriver(ALSTestDriver):
@@ -8,13 +7,10 @@ class ShellTestDriver(ALSTestDriver):
8
7
"""
9
10
def run(self) -> None:
11
-
12
# This takes care of failing the test in case the return code is
13
# non-zero
14
- p = check_call(
15
- self,
16
- [self.working_dir("test.sh"), self.env.repo_base],
17
- parse_shebang=True,
+ p = self.shell(
+ ["bash", "test.sh", self.env.repo_base],
18
env={
19
"ALS": self.env.als,
20
"ALS_HOME": self.env.als_home,
0 commit comments