mirror of
https://gitlab.com/vylion/velascobot.git
synced 2025-04-19 13:36:36 +02:00
19 lines
353 B
INI
19 lines
353 B
INI
[tox]
|
|
minversion = 2.0
|
|
envlist = py3, flake8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
passenv = CI TRAVIS TRAVIS_*
|
|
usedevelop = False
|
|
deps = -r{toxinidir}/requirements.txt
|
|
setenv = LANGUAGE=en
|
|
whitelist_externals = sh
|
|
commands =
|
|
/usr/bin/find . -type f -name "*.pyc" -delete
|
|
ostestr {posargs}
|
|
|
|
[testenv:velasco]
|
|
commands = ./velasco.sh
|
|
|