https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: 556315c6fdf1267ae2303fe08b908253a0dca6c3 authored by Phabricator Migration user on 06 January 2023, 20:13:26 UTC
Merge branch 'generated-differential-D2401-source' into 'generated-differential-D2401-target'
Tip revision: 556315c
tox.ini
[tox]
envlist=flake8,mypy,py3

[testenv]
extras =
  testing
deps =
  # the dependency below is needed for now as a workaround for
  #   https://github.com/pypa/pip/issues/6239
  swh.core[http] >= 0.0.75
  dev: ipdb
  pytest-cov
  pifpaf
commands =
  pifpaf run postgresql -- \
    pytest \
  !dev: --cov {envsitepackagesdir}/swh/deposit --cov-branch \
        {envsitepackagesdir}/swh/deposit \
        {posargs}

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

[testenv:mypy]
setenv = DJANGO_SETTINGS_MODULE = swh.deposit.settings.testing
extras =
  testing
deps =
  mypy < 0.750
commands =
  mypy swh
back to top