From: Christian Herdtweck Date: Fri, 5 Feb 2016 10:15:33 +0000 (+0100) Subject: create shell script to run unittests X-Git-Tag: v1.2~39 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=989ee8937313a559a29993e9eee33dc165936576;p=pyi2ncommon create shell script to run unittests --- diff --git a/run_unittests.sh b/run_unittests.sh new file mode 100755 index 0000000..10d6501 --- /dev/null +++ b/run_unittests.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +# run unittest suite using python2 and python3 + +python2 -m unittest discover test && python3 -m unittest discover test