Revision 0c51e4d8100118c63b51b8d66c47b1ef6d25a7a3 authored by Antoine R. Dumont (@ardumont) on 09 November 2018, 13:53:11 UTC, committed by Antoine R. Dumont (@ardumont) on 14 November 2018, 15:07:32 UTC
Test back `content_get` and `content_get_metadata` as a first step.
Plan to use those for the new and upcoming `content_get_range`
function.
1 parent 823465f
Raw File
tox.ini
[tox]
envlist=flake8,py3

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

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