https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: 8f92f1833de36d06b52fbf0d7e06e4c11d15b910 authored by David Douard on 17 January 2019, 15:03:38 UTC
Bump dependency on swh-scheduler 0.0.39
Tip revision: 8f92f18
tox.ini
[tox]
envlist=flake8,py3

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

[testenv:flake8]
skip_install = true
deps =
  flake8
commands =
  {envpython} -m flake8 \
    --exclude=.tox,.git,__pycache__,.tox,.eggs,*.egg,swh/deposit/migrations
back to top