Revision 99a28ad30b14ec72b8458ecd9503b22b7898e323 authored by Antoine R. Dumont (@ardumont) on 20 July 2020, 08:41:02 UTC, committed by Antoine R. Dumont (@ardumont) on 20 July 2020, 09:01:26 UTC
The storage fixtures now uses the swh.model.tests.generate_data_test instead

Related to T2494
1 parent 03e17c3
Raw File
tox.ini
[tox]
envlist=black,flake8,mypy,py3

[testenv]
extras =
  testing
deps =
  pytest-cov
  dev: ipdb
passenv =
  SWH_CASSANDRA_BIN
  SWH_CASSANDRA_LOG
commands =
  pytest \
    !slow: --hypothesis-profile=fast \
    slow:  --hypothesis-profile=slow \
         --cov={envsitepackagesdir}/swh/storage \
         {envsitepackagesdir}/swh/storage \
         --doctest-modules \
         --cov-branch {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

[testenv:mypy]
extras =
  testing
deps =
  mypy
commands =
  mypy swh
back to top