Skip to content
Extraits de code Groupes Projets
.travis.yml 560 octets
Newer Older
Jamesie Pic's avatar
Jamesie Pic a validé
sudo: false
language: python
env:
- DJANGO="django>1.8,<1.9" DJANGO_SETTINGS_MODULE=representatives.tests.settings
Jamesie Pic's avatar
Jamesie Pic a validé
python:
- "2.7"
before_install:
- pip install codecov
Jamesie Pic's avatar
Jamesie Pic a validé
install:
- pip install $DJANGO pep8 flake8 pytest-django pytest-cov codecov
- pip install -e .
Jamesie Pic's avatar
Jamesie Pic a validé
script:
- pep8 representatives/ --exclude migrations --ignore E128
- flake8 representatives/ --exclude migrations --ignore E128
- django-admin migrate
- cat representatives/contrib/parltrack/tests/representatives_fixture.json | parltrack_import_representatives
- py.test
after_success:
- codecov