mirror of
https://github.com/nikdoof/django-eveigb.git
synced 2025-12-13 03:32:16 +00:00
19 lines
402 B
YAML
19 lines
402 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
env:
|
|
- DJANGO="django==1.4.19"
|
|
- DJANGO="django==1.5.12"
|
|
- DJANGO="django==1.6.10"
|
|
install:
|
|
- pip install -q $DJANGO --use-mirrors
|
|
- pip install -q . --use-mirrors
|
|
- pip install -q mock --use-mirrors
|
|
- pip install -q pep8 --use-mirrors
|
|
before_script:
|
|
- "pep8 --exclude=migrations --ignore=E501,E225 eveigb"
|
|
script:
|
|
- python setup.py test
|
|
|