mirror of
https://github.com/LukeHagar/connexion.git
synced 2025-12-06 04:19:26 +00:00
Upgrade isort==5.9.1 (#1388)
* Upgrade isort==5.9.1 * isort --thirdparty connexion,aiohttp ./tests * isort --thirdparty aiohttp,connexion --check-only --diff . * cd tests before running isort
This commit is contained in:
16
tox.ini
16
tox.ini
@@ -16,9 +16,9 @@ envlist =
|
||||
[gh-actions]
|
||||
python =
|
||||
3.6: py36-min,py36-pypi
|
||||
3.7: py37-min,py37-pypi,flake8
|
||||
3.7: py37-min,py37-pypi
|
||||
3.8: py38-min,py38-pypi
|
||||
3.9: py39-min,py39-pypi,isort-check,isort-check-examples,isort-check-tests
|
||||
3.9: py39-min,py39-pypi,flake8,isort-check,isort-check-examples,isort-check-tests
|
||||
|
||||
[testenv]
|
||||
setenv=PYTHONPATH = {toxinidir}:{toxinidir}
|
||||
@@ -41,18 +41,18 @@ commands=python setup.py flake8
|
||||
|
||||
[testenv:isort-check]
|
||||
basepython=python3
|
||||
deps=isort==4.3.15
|
||||
deps=isort==5.9.1
|
||||
changedir={toxinidir}/connexion
|
||||
commands=isort -p connexion -c -diff .
|
||||
commands=isort --project connexion --check-only --diff .
|
||||
|
||||
[testenv:isort-check-examples]
|
||||
basepython=python3
|
||||
deps=isort==4.3.15
|
||||
deps=isort==5.9.1
|
||||
changedir={toxinidir}/examples
|
||||
commands=isort -o connexion -c -diff .
|
||||
commands=isort --thirdparty connexion --check-only --diff .
|
||||
|
||||
[testenv:isort-check-tests]
|
||||
basepython=python3
|
||||
deps=isort==4.3.15
|
||||
deps=isort==5.9.1
|
||||
changedir={toxinidir}/tests
|
||||
commands=isort -o connexion -c -diff .
|
||||
commands=isort --thirdparty aiohttp,connexion --check-only --diff .
|
||||
|
||||
Reference in New Issue
Block a user