Revision 70f63c3a86aee940295db2236418970c1e8f1648 authored by Valentin Lorentz on 21 August 2019, 11:47:50 UTC, committed by Valentin Lorentz on 23 August 2019, 08:31:35 UTC
It should only be in the output of 'snapshot_get_*' methods,
not in the input of 'snapshot_add'.
1 parent 54b974f
Raw File
tox.ini
[tox]
envlist=flake8,py3-no-origin-ids,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:py3-no-origin-ids]
deps =
  .[testing]
  pytest-cov
setenv =
  SWH_STORAGE_IN_MEMORY_ENABLE_ORIGIN_IDS=false
commands =
  pytest --hypothesis-profile=fast {posargs} swh/storage/tests/test_in_memory.py

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