https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: fee3a41dc0a6c33f491cf947311a228bf5ef946c authored by Nicolas Dandrimont on 11 April 2019, 10:03:10 UTC
Make sure timestamps can be represented by Python no matter the timezone
Tip revision: fee3a41
tox.ini
[tox]
envlist=flake8,py3

[testenv:py3]
deps =
  .[testing]
  pytest-cov
commands =
  pytest --cov=swh --cov-branch {posargs}

[testenv:flake8]
skip_install = true
deps =
  flake8
commands =
  {envpython} -m flake8
back to top