summaryrefslogtreecommitdiff
path: root/tests/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-xtests/run.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/run.sh b/tests/run.sh
deleted file mode 100755
index 184dfc16..00000000
--- a/tests/run.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-# The script runs python tests
-# Firstly, all CLI tests are run
-# Then, all the GUI tests are run individually
-# to avoid segmentation fault
-
-PARAMS=""
-
-while [ ! $# -eq 0 ]
-do
- case "$1" in
- --rungui)
- PARAMS="$PARAMS --rungui"
- ;;
- --runtor)
- PARAMS="$PARAMS --runtor"
- ;;
- esac
- shift
-done
-
-pytest $PARAMS -vvv ./tests/test_cli*.py || exit 1
-for filename in ./tests/test_gui_*.py; do
- pytest $PARAMS -vvv --no-qt-log $filename || exit 1
-done