Skip to content
Snippets Groups Projects
Select Git revision
  • 83f4a6fd0f2037237979a07a111a3e715897ad56
  • master default
2 results

README.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