https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: d5e8229fb18ee0946e7d037fa7c336cd1bbb9f7f authored by Antoine Lambert on 04 December 2018, 12:33:55 UTC
storage.in_memory: Use integer ids for origin and visit instead of tuples
Tip revision: d5e8229
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