https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 091498e3c77ac098ea703650fde83c54b6aab5d5 authored by Valentin Lorentz on 05 May 2020, 10:03:39 UTC
Make aware_datetimes() generate only ISO8601-encodable datetimes.
Tip revision: 091498e
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