https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: b8606d22b08800b71228d399a4fcb5340bb966a3 authored by Valentin Lorentz on 14 September 2020, 11:48:32 UTC
Rename 'id' attribute of swh:object to 'swhid' in swh.xsd to match the specification.
Tip revision: b8606d2
tox.ini
[tox]
envlist=flake8,mypy,py3-django2

[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
  swh.scheduler[testing] >= 0.5.0
  dev: pdbpp
  pytest-cov
  django2: Django>=2,<3
commands =
  pytest \
  !dev: --cov {envsitepackagesdir}/swh/deposit --cov-branch \
        {envsitepackagesdir}/swh/deposit \
        {posargs}

[testenv:black]
skip_install = true
deps =
  black
commands =
  {envpython} -m black --check swh

[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
  django-stubs
  djangorestframework-stubs
commands =
  mypy swh
back to top