Revision a95646fc8786590f05c0dae019b9b72ccb5ce912 authored by David Douard on 29 May 2020, 15:14:31 UTC, committed by David Douard on 29 May 2020, 15:14:31 UTC
this attribute is not an intrinsic property of a content object, so it
should not be used when comparing or hashing.
1 parent 29312df
Raw File
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