Revision dc6afe41bbd467520be15a8acd38d44d9f226ec7 authored by Valentin Lorentz on 01 March 2019, 10:16:24 UTC, committed by Valentin Lorentz on 01 March 2019, 10:16:24 UTC
This reverts commit 3939a41d73bdef94913a6e8c3aa212532d281463.

Wasn't supposed to be committed yet.
1 parent 5499400
Raw File
tox.ini
[tox]
envlist=flake8,py3

[testenv:py3]
deps =
  .[testing]
  pytest-cov
  pifpaf
setenv =
  LC_ALL=C.UTF-8
  LC_CTYPE=C.UTF-8
  LANG=C.UTF-8
commands =
  pifpaf run postgresql -- pytest --doctest-modules --hypothesis-profile=fast --cov=swh --cov-branch {posargs}

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


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