1[tox] 2envlist=static,format 3skipsdist=True 4 5[testenv] 6whitelist_externals= 7 /usr/bin/sh 8 /usr/bin/test 9 10[testenv:format] 11deps= 12 black 13commands= 14 black -S --check deoldify 15 16[testenv:static] 17deps= 18 -rrequirements.txt 19 pylint 20commands= 21 sh -c 'pylint --disable=W deoldify; test $(( $? & (1|2|4|32) )) = 0' 22 23