summaryrefslogtreecommitdiffstats
path: root/tasks.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-17 19:03:18 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-17 19:03:18 +0000
commit3e2509d4c8e0cdbe9c3c39a802f1086701f613dc (patch)
tree6e5bfbb597f089825b8931c9f4528ef59c08d4c2 /tasks.py
parentAdding upstream version 1.5.0. (diff)
downloadlitecli-3e2509d4c8e0cdbe9c3c39a802f1086701f613dc.tar.xz
litecli-3e2509d4c8e0cdbe9c3c39a802f1086701f613dc.zip
Adding upstream version 1.6.0.upstream/1.6.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 5e68107..1cd4b69 100644
--- a/tasks.py
+++ b/tasks.py
@@ -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)