Revision d2559583cafa67d7dc7a8e30ac7ca60c914151a4 authored by Valentin Lorentz on 05 May 2020, 13:48:01 UTC, committed by Valentin Lorentz on 06 May 2020, 10:46:41 UTC
This allows the checker to use a configurable URL, in case it
needs an URL different from the one used by the client.

For example a client outside docker would use http://localhost:5080/deposit/
to access the API, but the checker cannot use this URL (it needs either
nginx or swh-deposit as hostname).
1 parent cb6bc3a
Raw File
tox.ini
[tox]
envlist=flake8,mypy,py3-django{1,2}

[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
  django1: Django>=1.11,<2
  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