1
0
Fork 0

Adding upstream version 1.6.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-09 17:41:57 +01:00
parent 0912fc1528
commit ec905d2958
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
17 changed files with 95 additions and 53 deletions

View file

@ -83,7 +83,9 @@ class test(TestCommand):
self.pytest_args = ""
def run_tests(self):
unit_test_errno = subprocess.call("pytest " + self.pytest_args, shell=True)
unit_test_errno = subprocess.call(
"pytest tests " + self.pytest_args, shell=True
)
# cli_errno = subprocess.call('behave test/features', shell=True)
# sys.exit(unit_test_errno or cli_errno)
sys.exit(unit_test_errno)