You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
381 B
INI
26 lines
381 B
INI
5 years ago
|
[tox]
|
||
|
envlist = packaging, pep8
|
||
|
|
||
|
[testenv]
|
||
|
setenv =
|
||
|
PYTHONDONTWRITEBYTECODE = no_byte_code
|
||
|
PYTHONPATH = .
|
||
|
|
||
|
[testenv:tests]
|
||
|
commands =
|
||
|
python -m unittest discover
|
||
|
|
||
|
[testenv:packaging]
|
||
|
deps =
|
||
|
check-manifest
|
||
|
commands =
|
||
|
check-manifest
|
||
|
|
||
|
[testenv:pep8]
|
||
|
skip_install = True
|
||
|
basepython = python3
|
||
|
deps =
|
||
|
flake8
|
||
|
commands =
|
||
|
flake8 saml_mapping_provider.py tests/*
|