https://github.com/robotframework/RIDE
Raw File
Tip revision: e34b6e1fa2c30f4509ccc9185900d2f6709a5aff authored by HelioGuilherme66 on 26 February 2023, 21:30:20 UTC
Version 2.0rc1
Tip revision: e34b6e1
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