Files
num2words/tox.ini
Alvaro eef5b03593 Updates accents on céntimos in Spanish (#240)
* Updates accents on céntimos in Spanish

* Update test_es.py

* Update test_es.py

* fix tests

* fix encoding

* Update tox.ini

* Update test_cli.py

* Update test_cli.py

* Update test_cli.py

* Update lang_AR.py

flake-8 compliant

* Update test_cli.py

flake8 compliant

* Update test_cli.py

* Update test_cli.py
2019-02-12 13:59:46 -05:00

33 lines
613 B
INI

[tox]
envlist = flake8,isort,py27,py34,py35,py36,py37
[testenv]
passenv = TRAVIS TRAVIS_*
deps =
coverage
delegator.py
commands =
coverage run -m unittest discover
coverage report --fail-under=75 --omit=.tox/*,tests/*,/usr/*
coverage report --fail-under=100 --include=tests/* --skip-covered
[testenv:flake8]
changedir = {toxinidir}
deps =
flake8
flake8-copyright
commands =
flake8
[testenv:isort]
changedir = {toxinidir}
deps =
isort
delegator.py
commands =
isort --check-only --recursive --diff num2words tests
[testenv:py27]
setenv =
PYTHONIOENCODING = UTF-8