1
0
Fork 0

tox: Move 'yapf' ignore list to '.yapfignore'

Signed-off-by: Vasilis Tsiligiannis <acinonyx@openwrt.gr>
merge-requests/381/head
Vasilis Tsiligiannis 2019-05-09 18:07:58 +03:00
parent 45abdcd33a
commit be4e2fd1fc
2 changed files with 6 additions and 8 deletions

View File

@ -1,2 +1,6 @@
db/_version.py
db/base/migrations
.tox
build
docs
versioneer.py

10
tox.ini
View File

@ -23,19 +23,13 @@ commands = isort -rc -c -df
deps =
yapf==0.27.0
skip_install = True
commands = yapf -d -r \
setup.py \
db \
auth0login
commands = yapf -d -r .
[testenv:py3-yapf]
deps =
yapf==0.27.0
skip_install = True
commands = yapf -d -r \
setup.py \
db \
auth0login
commands = yapf -d -r .
[testenv:deps]
install_command = python -m pip install --no-deps {opts} {packages}