-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to python 3.8 in Travis. I tried to add 3.8 while keeping 3.7 and 3.6, but ran into issues with Travis config, so instead just bumped straight to 3.8. Long term I'd like to explore moving to Azure Pipelines, but don't have the time to figure that out just yet. * `flake8` was renamed to `pycodestyle` * `py.test` was deprecated in favor of `pytest`
- Loading branch information
1 parent
b92391d
commit d713732
Showing
2 changed files
with
7 additions
and
7 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,9 +1,9 @@ | ||
sudo: false | ||
language: python | ||
python: "3.6" | ||
python: "3.8" | ||
env: | ||
- TOXENV=py27 | ||
- TOXENV=py36 | ||
- TOXENV=py38 | ||
install: | ||
- pip install tox | ||
script: tox |
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,19 @@ | ||
[tox] | ||
envlist = py27,py36,stylecheck | ||
envlist = py27,py36,py37,py38,stylecheck | ||
|
||
[testenv] | ||
deps = | ||
pytest | ||
Flask-SQLAlchemy | ||
Pygments | ||
commands = | ||
py.test | ||
pytest | ||
|
||
[testenv:stylecheck] | ||
deps = | ||
flake8 | ||
pycodestyle | ||
commands = | ||
flake8 flask_debugtoolbar test | ||
pycodestyle flask_debugtoolbar test | ||
|
||
[flake8] | ||
[pycodestyle] | ||
max-line-length = 100 |