This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from cmc333333/django1011
Proclaim support, add tests for Django 1.10 and 1.11
- Loading branch information
Showing
126 changed files
with
471 additions
and
15,204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
*.py[co] | ||
*.swp | ||
*.pyc | ||
eregs.db | ||
regcore.egg-info/ | ||
.coverage | ||
local_settings.py | ||
|
||
docs/_build | ||
|
||
*.egg-info/ | ||
.tox | ||
# local_settings.py | ||
docs/_build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ regcore.egg-info/ | |
.coverage | ||
.tox | ||
local_settings.py | ||
docs/_build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
language: python | ||
sudo: false | ||
python: | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "pypy" | ||
# - "3.2" pyelasticsearch is not compatible | ||
# - "3.3" Django stopped supporting this in 1.9 | ||
# - "pypy3" requires sudo in travis | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
- "pypy" | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install -r requirements_test.txt | ||
- pip install coveralls tox-travis | ||
script: | ||
- pytest --cov | ||
- flake8 . | ||
- bandit -r . -x regcore/tests,regcore_read/tests,regcore_write/tests | ||
- tox | ||
after_success: | ||
- if [[ $INTEGRATION_TARGET = '' ]] && [[ $TRAVIS_PYTHON_VERSION = '3.5' ]]; then coveralls; fi | ||
- if [[ $INTEGRATION_TARGET = '' ]] && [[ $TRAVIS_PYTHON_VERSION = '3.6' ]]; then coveralls; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.