-
Notifications
You must be signed in to change notification settings - Fork 0
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
Travis Dart
committed
Jul 24, 2020
1 parent
d84075b
commit b2bfad3
Showing
5 changed files
with
42 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
language: python | ||
python: | ||
- 2.7 | ||
- 3.8 | ||
install: pip install tox-travis | ||
script: tox -v -c travis.tox.ini |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# tox config for travis-ci. See also travis.tox.ini | ||
[tox] | ||
skipsdist = True | ||
envlist= | ||
py{27,38}-django111 | ||
py38-django{22,30} | ||
|
||
[testenv] | ||
passenv = TOXENV CI TRAVIS TRAVIS_* CODECOV_* | ||
changedir = {toxinidir}/tests/ | ||
deps = | ||
coverage | ||
codecov>=1.4.0 | ||
django30: django==3.0.* | ||
django22: django==2.2.* | ||
django111: django==1.11.* | ||
commands = | ||
coverage run \ | ||
--rcfile={toxinidir}/.coveragerc \ | ||
--source='{toxinidir}/tests/,{toxinidir}/formstorm/' \ | ||
runtests.py | ||
codecov -e TOXENV |