1
1
Fork 0
mirror of https://github.com/McSinyx/palace synced 2023-12-14 09:02:59 +01:00
palace/tox.ini
2020-02-15 14:27:06 +07:00

28 lines
423 B
INI

[tox]
envlist = py
minversion = 3.3
isolated_build = true
[testenv]
deps =
flake8
Cython
pytest-cov
commands =
flake8
pytest
[flake8]
filename = *.pxd, *.pyx, *.py
hang-closing = True
ignore = E225, E226, E227, E701
per-file-ignores = *.pxd:E501,E999
; See https://github.com/PyCQA/pycodestyle/issues/906
;max-doc-length = 72
[pytest]
addopts = --cov=palace
[coverage:run]
plugins = Cython.Coverage