Revision 1ddb1453605e30c979fc873ba12c23947097aa85 authored by Valentin Lorentz on 01 April 2019, 10:00:51 UTC, committed by Valentin Lorentz on 01 April 2019, 13:21:24 UTC
1 parent 7b56701
Raw File
tox.ini
[tox]
envlist=flake8,py3

[testenv:py3]
deps =
  .[testing]
  .[listener]
  pytest-cov
  pifpaf
commands =
  pifpaf run postgresql -- pytest --hypothesis-profile=fast --cov=swh --cov-branch {posargs}

[testenv:py3-slow]
deps =
  .[testing]
  .[listener]
  pytest-cov
  pifpaf
commands =
  pifpaf run postgresql -- pytest --hypothesis-profile=slow --cov=swh --cov-branch {posargs}

[testenv:flake8]
skip_install = true
deps =
  flake8
commands =
  {envpython} -m flake8
back to top