Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jantic
GitHub Repository: jantic/deoldify
Path: blob/master/tox.ini
781 views
1
[tox]
2
envlist=static,format
3
skipsdist=True
4
5
[testenv]
6
whitelist_externals=
7
/usr/bin/sh
8
/usr/bin/test
9
10
[testenv:format]
11
deps=
12
black
13
commands=
14
black -S --check deoldify
15
16
[testenv:static]
17
deps=
18
-rrequirements.txt
19
pylint
20
commands=
21
sh -c 'pylint --disable=W deoldify; test $(( $? & (1|2|4|32) )) = 0'
22
23