https://github.com/robotframework/RIDE
Raw File
Tip revision: 6d43b9ad591d47f13e5f5cddf1d6158fca3dbc6a authored by Hélio Guilherme on 20 April 2024, 18:58:41 UTC
Update languages (#2753)
Tip revision: 6d43b9a
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