This repository has been archived by the owner on Jan 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
169 changed files
with
27,931 additions
and
19,602 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,47 +1,91 @@ | ||
docs/swagger.png | ||
*.pyc | ||
*.ropeproject | ||
*env/ | ||
swag/ | ||
# Extended from https://github.com/github/gitignore/blob/master/Python.gitignore | ||
*.py[cod] | ||
*.coverage | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
lib64 | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.tox | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
.hypothesis/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
|
||
# Flask stuff: | ||
instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# IPython Notebook | ||
.ipynb_checkpoints | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# celery beat schedule file | ||
celerybeat-schedule | ||
|
||
# dotenv | ||
.env | ||
|
||
# virtualenv | ||
venv/ | ||
ENV/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# Mr Developer | ||
.idea | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
tests/cigar_example/rest_framework_swagger | ||
db.sql | ||
tests/cigar_example/static | ||
supervisord.log | ||
tests/cigar_example/static_root/ | ||
dist | ||
*.db | ||
site/ |
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,45 +1,12 @@ | ||
language: python | ||
# This only controls the version of Python used to run tox, the | ||
# versions used for the tests are handled by tox itself. Python 3.5 | ||
# is only installed if we explicitly request it, so we have to use | ||
# it as the base, so that it's available to tox. Python 2.7 and 3.4 | ||
# are available in the Travis images by default. See: | ||
# https://github.com/travis-ci/travis-ci/issues/4794#issuecomment-143758799 | ||
python: "3.5" | ||
|
||
sudo: false | ||
|
||
env: | ||
- TOX_ENV=py27-flake8 | ||
- TOX_ENV=py27-django1.8-drf2.3 | ||
- TOX_ENV=py27-django1.8-drf2.4 | ||
- TOX_ENV=py27-django1.8-drf3.0 | ||
- TOX_ENV=py27-django1.8-drf3.1 | ||
- TOX_ENV=py27-django1.8-drf3.2 | ||
- TOX_ENV=py27-django1.8-drf3.3 | ||
- TOX_ENV=py27-django1.9-drf3.3 | ||
- TOX_ENV=py33-django1.8-drf3.1 | ||
- TOX_ENV=py33-django1.8-drf3.2 | ||
- TOX_ENV=py33-django1.8-drf3.3 | ||
- TOX_ENV=py34-django1.8-drf2.3 | ||
- TOX_ENV=py34-django1.8-drf2.4 | ||
- TOX_ENV=py34-django1.8-drf3.0 | ||
- TOX_ENV=py34-django1.8-drf3.1 | ||
- TOX_ENV=py34-django1.8-drf3.2 | ||
- TOX_ENV=py34-django1.8-drf3.3 | ||
- TOX_ENV=py34-django1.9-drf3.3 | ||
- TOX_ENV=py35-django1.8-drf3.3 | ||
- TOX_ENV=py35-django1.9-drf3.3 | ||
|
||
- TOX_ENV=py27 | ||
- TOX_ENV=py35 | ||
matrix: | ||
allow_failures: | ||
- env: TOX_ENV=py27-django1.9-drf3.3 | ||
- env: TOX_ENV=py34-django1.9-drf3.3 | ||
- env: TOX_ENV=py35-django1.9-drf3.3 | ||
fast_finish: true | ||
|
||
install: | ||
- pip install tox | ||
|
||
script: | ||
- tox -e $TOX_ENV |
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
Oops, something went wrong.