Revision 2e7051659d3b93f7e8c4af8d5c30df1846cc65e7 authored by Antoine Lambert on 23 April 2019, 14:56:29 UTC, committed by Antoine Lambert on 06 May 2019, 10:02:21 UTC
Add methods is_history_truncated and missing_revisions to check if the produced
history got truncated or not.

Closes T1677
1 parent 6510b5e
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