Skip to content
Snippets Groups Projects
tox.ini 437 B
[tox]
env_list =
    teklia-dan, doc
minversion = 4.6.4

[testenv]
description = run the tests with pytest
package = wheel
wheel_build_env = .pkg
deps =
    pytest>=6
    pytest-responses
commands =
    pytest {tty:--color=yes} {posargs}

[testenv:doc]
extras = docs

# No need to install dan in this env
skip_install = True

deps = -rdoc-requirements.txt

commands =
  mkdocs build --clean --verbose --strict

[pytest]
testpaths= tests