1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
; SPDX-FileCopyrightText: 2024 wmj <wmj.py@gmx.com>
;
; SPDX-License-Identifier: LGPL-3.0-or-later
[tox]
minversion = 4
envlist = py{38,39,310,311,312}-{en,es,c}
#, flake8
[testenv]
setenv =
VIRTUALENV_DISCOVERY = pyenv
OFX_SCHEMA_PATH={toxinidir}/.ofx_schemas
LC_ALL="en_US.UTF8"
LANG="en_US.UTF8"
py{38,39,310,311,312}-es: LC_ALL="es_ES.UTF8"
py{38,39,310,311,312}-es: LANG="es_ES.UTF8"
py{38,39,310,311,312}-c: LC_ALL="C"
py{38,39,310,311,312}-c: LANG="C"
deps=
.[basic_formats]
pytest
lxml
extras =
all
commands=
python -c "print('LC_ALL {env:LC_ALL:} LANG {env:LANG:}')"
py.test
|