swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 00e5f336ee256ae7ca031ee154228e40df65355e authored by Valentin Lorentz on 08 April 2019, 13:40:24 UTC
Make test_origin_get_range run faster.
Tip revision: 00e5f33
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