-
-
Notifications
You must be signed in to change notification settings - Fork 530
/
tox.ini
38 lines (35 loc) · 766 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tox]
envlist = py38,py39,py310,py311
[testenv]
passenv = LD_LIBRARY_PATH
whitelist_externals =
stockfish
crafty
fairy-stockfish
commands =
python test.py --verbose
python -m doctest README.rst --verbose
[testenv:{py38,py39}]
passenv = LD_LIBRARY_PATH
whitelist_externals =
stockfish
crafty
commands =
python test.py --verbose
[flake8]
ignore =
# Allow over-indent and unaligned indent
E126 E131
# Allow indenting array elements
E241
# Allow grouping functions
E302 E305
# Allow "ambiguous" variable names
E741
# Allow binary operators before EOL (end of line)
W504
# Allow "def overloaded(): ..."
E704 E301
# Bare except (with or without reraise)
E722
max-line-length = 160