https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: a427e184fb02f4108424448b045f90187291dcb0 authored by David Douard on 11 June 2020, 15:00:50 UTC
Allow negative_utc to be None in normalize_timestamp()
Tip revision: a427e18
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