summaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-23 14:18:40 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-24 09:56:17 +0000
commitcbc3d789a4573704863de3a0247f55eda8b28638 (patch)
treed2ed4d405d2ca790826c4190b40c1699fbf4d46d /check
parent822d5415edc61fafeb8709e27b6fb1a2ddd3b288 (diff)
downloadmorph-cbc3d789a4573704863de3a0247f55eda8b28638.tar.gz
Remove tests for branch-and-merge plugin
Change-Id: Ie66b543eb67282c08a2651062727a4583057ee2d
Diffstat (limited to 'check')
-rwxr-xr-xcheck16
1 files changed, 0 insertions, 16 deletions
diff --git a/check b/check
index 1d56c514..ddcb5f09 100755
--- a/check
+++ b/check
@@ -25,14 +25,12 @@ set -e
run_style=false
run_unit_tests=false
run_cmdtests=false
-run_slow_cmdtests=false
run_yarns=false
snapshot=''
if [ "$#" -eq 0 ]; then
run_style=true
run_unit_tests=true
run_cmdtests=true
- run_slow_cmdtests=false
run_yarns=true
fi
while [ "$#" -gt 0 ]
@@ -42,7 +40,6 @@ do
run_style=true
run_unit_tests=true
run_cmdtests=true
- run_slow_cmdtests=true
run_yarns=true
;;
--style)
@@ -63,12 +60,6 @@ do
--no-cmdtests)
run_cmdtests=false
;;
- --slow-cmdtests)
- run_slow_cmdtests=true
- ;;
- --no-slow-cmdtests)
- run_slow_cmdtests=false
- ;;
--yarns)
run_yarns=true
;;
@@ -180,13 +171,6 @@ else
echo "NOT RUNNING test"
fi
-if "$run_slow_cmdtests"
-then
- cmdtest tests.branching
-else
- echo "NOT RUNNING test.branching"
-fi
-
# Building systems requires the 'filter' parameter of tarfile.TarFile.add():
# this was introduced in Python 2.7
if ! "$run_cmdtests"; then