Files
DeOldify/tox.ini
Gareth Davidson dff82b6d2e Remove execution bit
All the files marked as executable were bugging me, so I ran this:

find . -executable -type f -print0 | xargs -0 grep -L '#!' | xargs chmod -x
2022-09-19 08:50:00 +01:00

22 lines
303 B
INI

[tox]
envlist=static,format
skipsdist=True
[testenv]
whitelist_externals=
/usr/bin/sh
/usr/bin/test
[testenv:format]
deps=
black
commands=
black -S --check deoldify
[testenv:static]
deps=
-rrequirements.txt
pylint
commands=
sh -c 'pylint --disable=W deoldify; test $(( $? & (1|2|4|32) )) = 0'