Skip to content
Snippets Groups Projects
Select Git revision
  • 4384ed5935dd1562abccae1351b2d16c261f70e6
  • master default
  • dev
  • ci/windows
  • feature/installer
  • release/1.0.2
  • feature/tox
  • pydoc
  • jenkins
  • issue10
  • json-config
  • v2.0.0
  • v2.0.0-beta.5
  • v1.0.2
  • v2.0.0-beta.4
  • v2.0.0-beta.3
  • v1.0.1
  • v1.0.0
18 results

tox.ini

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