Skip to content
Snippets Groups Projects
tox.ini 179 B
Newer Older
  • Learn to ignore specific revisions
  • Swen Vermeul's avatar
    Swen Vermeul committed
    [tox]
    envlist = py37, py35, flake8
    
    [testenv]
    commands = py.test tests
    deps = pytest
    
    [testenv:flake8]
    commands = flake8 tests
    deps = flake8
    skip_install = True
    skipsdist = True