authentic/jenkins.sh

10 lines
218 B
Bash
Raw Normal View History

2013-06-24 17:06:07 +02:00
#!/bin/sh
set -e
2015-02-16 01:34:05 +01:00
pip install --upgrade pip
pip install --upgrade pylint==1.1.0
pip install --upgrade tox
2013-06-24 17:06:07 +02:00
(pylint -f parseable --rcfile /var/lib/jenkins/pylint.django.rc authentic2/ | tee pylint.out) || /bin/true
tox