Revision e63b78c6f9b2a23599f1bbc791d0e039aa3e2864 authored by Valentin Lorentz on 30 July 2020, 09:30:28 UTC, committed by Valentin Lorentz on 30 July 2020, 09:30:28 UTC
Unbreaks swh-loader-core's tests, which are all red when run with the current
swh-storage version.

Unfortunately, swh-storage's tests did not catch it, because the in-memory
backend works fine with iterables, but the pg backend doesn't.
1 parent 7667f7e
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