Revision 37d70d653f4ad3d7efa3e174560d1006830162b7 authored by Valentin Lorentz on 20 November 2018, 15:04:59 UTC, committed by Valentin Lorentz on 21 November 2018, 14:32:35 UTC
Summary:
The PG Storage provides that feature, and the Git loader uses it.
This commit documents that feature, adds it to the Mem Storage,
and changes test_content_missing to test that behavior.

Reviewers: #reviewers, ardumont

Reviewed By: #reviewers, ardumont

Subscribers: swh-public-ci

Differential Revision: https://forge.softwareheritage.org/D680
1 parent 97b356a
Raw File
tox.ini
[tox]
envlist=flake8,py3

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

[testenv:py3-slow]
deps =
  .[testing]
  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