Revision 7beba93a970231e044d48b21491d7c0dbbd43116 authored by Antoine R. Dumont (@ardumont) on 30 July 2020, 07:58:40 UTC, committed by Antoine R. Dumont (@ardumont) on 30 July 2020, 12:10:12 UTC
This leverages the latest change in origin_visit_get and
origin_visit_status_get to iterate over visit and visit status to detect a
snapshot targetting a revision.

This algo got used recently in the deposit. It may serve again.

Related to T645
1 parent b81f928
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