https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 340656dd3be8f5b41bdc02aa9da7386e1f2d79a4 authored by David Douard on 03 June 2020, 09:23:00 UTC
Fix origin_visit hypothesis strategies
Tip revision: 340656d
tox.ini
[tox]
envlist=black,flake8,mypy,py3

[testenv]
extras =
  testing
deps =
  pytest-cov
commands =
  pytest --cov={envsitepackagesdir}/swh/model \
         {envsitepackagesdir}/swh/model \
           --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