[tox] envlist = pep8,py3 basepython = python3 [testenv] deps = pytest py3: coveralls backports.tempfile # posargs will be replaced by the tox args, so you can override pytest # args e.g. `tox -- tests/test_graph.py` commands = pytest {posargs:tests/} passenv = GITHUB_* setenv = PYTHONPATH={toxinidir} [testenv:py3] # for py3 env we will get code coverage commands = coverage run --branch --source=pythonforandroid -m pytest {posargs:tests/} coverage report -m [testenv:pep8] deps = flake8 commands = flake8 pythonforandroid/ tests/ ci/ setup.py [flake8] ignore = E123, # Closing bracket does not match indentation of opening bracket's line E124, # Closing bracket does not match visual indentation E126, # Continuation line over-indented for hanging indent E226, # Missing whitespace around arithmetic operator E402, # Module level import not at top of file E501, # Line too long (82 > 79 characters) W503, # Line break occurred before a binary operator W504 # Line break occurred after a binary operator