swh:1:snp:5791d32a1cce576fb4cbed0e5a0cb8a857390f65
Raw File
Tip revision: 6050f3356bf1999c071c96f49d3bf19660fd58ee authored by Hélio Guilherme on 03 April 2024, 23:20:05 UTC
Merge pull request #2740 from HelioGuilherme66/fix_language
Tip revision: 6050f33
tox.ini
[tox]
envlist = py39

[testenv]
setenv = APPDATA = {toxinidir}/AppData
description = Unit tests
deps = 
    invoke
    pytest
    coverage
commands = pip install -r requirements-dev.txt
           pip install -r requirements.txt
           pip install .
           invoke test-ci
 
[coverage:run]

back to top