Created
October 7, 2013 20:24
-
-
Save joncotton/6874335 to your computer and use it in GitHub Desktop.
.gitignore file for ArmSections. Nothing official, just WIP for now.
This file contains hidden or 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
| # Tox (http://tox.testrun.org/) is a tool for running tests | |
| # in multiple virtualenvs. This configuration file will run the | |
| # test suite on all supported Python/Django versions. | |
| # To use it, "pip install tox" and then run "tox". | |
| [tox] | |
| envlist = py27_django13, py27_django14, py27_django15, py27_django16 | |
| downloadcache = {toxworkdir}/.cache | |
| [testenv] | |
| basepython = python2.7 | |
| commands = {envpython} {envsitepackagesdir}/armstrong/dev/dev_django.py test {posargs} | |
| ; commands = fab coverage:coverage_dir=coverage_{envname} | |
| [common] | |
| deps = | |
| fabric | |
| coverage | |
| django-model-utils>=0.6.0 | |
| armstrong.core.arm_content | |
| {toxinidir}/armstrong.dev-django16.tar.gz | |
| [testenv:py27_django13] | |
| deps = | |
| {[common]deps} | |
| Django<1.4 | |
| [testenv:py27_django14] | |
| deps = | |
| {[common]deps} | |
| Django<1.5 | |
| [testenv:py27_django15] | |
| deps = | |
| {[common]deps} | |
| Django<1.6 | |
| [testenv:py27_django16] | |
| deps = | |
| {[common]deps} | |
| {toxinidir}/Django-1.6b4.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment