IL2HorusTeam/il2fb-commons

View on GitHub
tox.ini

Summary

Maintainability
Test Coverage
[tox]
envlist = py38,py39

[pytest]
addopts =
  -vv
  --capture=no
  --tb=native
  --ignore setup.py
  --doctest-modules
  --cov-report term-missing
  --cov ./il2fb/commons
norecursedirs =
  .git .tox requirements src docs

[testenv]
deps =
  -rrequirements/test.txt

commands =
  pip install .
  py.test --exitfirst --cache-clear --basetemp={envtmpdir} {posargs}