diff --git a/nosetests3 b/nosetests3 new file mode 100755 index 0000000..4ae313d --- /dev/null +++ b/nosetests3 @@ -0,0 +1,12 @@ +#!/usr/bin/python3 +# EASY-INSTALL-ENTRY-SCRIPT: 'nose==1.3.7','console_scripts','nosetests-3.4' +__requires__ = 'nose>=1.3.7' +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.exit( + load_entry_point( + 'nose>=1.3.7', 'console_scripts', 'nosetests-3.%s' % + sys.version_info.minor)() + ) diff --git a/runtests3.sh b/runtests3.sh new file mode 100755 index 0000000..cfafed5 --- /dev/null +++ b/runtests3.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +PAGURE_CONFIG=`pwd`/tests/test_config \ +PYTHONPATH=pagure \ +./nosetests3 --with-coverage --cover-erase --cover-package=pagure $*