run py3 tests in CI by default

Fixes: https://pagure.io/koji/issue/1323
This commit is contained in:
Tomas Kopecek 2019-03-05 15:29:37 +01:00 committed by Mike McLean
parent 961adf56ac
commit aba10c7c73

View file

@ -97,7 +97,11 @@ Configuration
# setup virtual environment
rm -rf kojienv
virtualenv --system-site-packages kojienv
if [ -x /usr/bin/python3 ] ; then
python3 -m venv --system-site-packages kojienv
else
virtualenv --system-site-packages kojienv
fi
source kojienv/bin/activate
# install python requirements via pip, you can also specify exact versions
@ -109,7 +113,12 @@ Configuration
pip install setuptools --upgrade --ignore-installed
pip install psycopg2 --upgrade --ignore-installed
fi
pip install nose python-qpid-proton mock coverage python-multilib Cheetah --upgrade --ignore-installed
pip install nose python-qpid-proton mock coverage python-multilib --upgrade --ignore-installed
if [ -x /usr/bin/python3 ] ; then
pip install Cheetah3 nose-cover3 --upgrade --ignore-installed
else
pip install Cheetah --upgrade --ignore-installed
fi
# rehash package to be sure updated versions are used
hash -r