This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
calebasse/jenkins/jenkins.sh

11 lines
420 B
Bash
Executable File

#!/bin/sh
pip install --upgrade pip pylint==1.4.0 django-jux
pip install --upgrade -r requirements.txt
cp jenkins/local_settings.py.example local_settings.py
./manage.py syncdb --all --noinput
./manage.py migrate --fake
./manage.py validate
./manage.py test agenda dossiers actes facturation personnes ressources
(pylint -f parseable --rcfile /var/lib/jenkins/pylint.django.rc calebasse/ | tee pylint.out) || /bin/true