Skip to content
Snippets Groups Projects
Select Git revision
  • 1b1a7a8b386dba5eb15b810db7d4a08504f50955
  • master default protected
2 results

drake.md

Blame
  • tox.ini 251 B
    [tox]
    isolated_build = true
    envlist = lint,py3
    
    [testenv:lint]
    deps =
        flake8
    commands =
        flake8 pycgtool
    
    [testenv]
    deps =
        pytest
        pytest-cov
    commands =
        pytest --cov=pycgtool --cov-fail-under=80 test/
    
    [flake8]
    max-line-length = 120