language: python python: - "2.7" - "3.5" env: - DJANGO=1.8.18 - DJANGO=1.10.7 - DJANGO=1.11.1 install: - pip install -q Django==$DJANGO - pip install coveralls - pip install -r rest_auth/tests/requirements.pip script: - coverage run --source=rest_auth setup.py test after_success: - coveralls before_script: - flake8 . --config=flake8