https://github.com/robotframework/RIDE
Raw File
Tip revision: 598b45bd43600426539d1e2c563f1afe5e872d1d authored by HelioGuilherme66 on 16 April 2023, 23:09:59 UTC
Fix docs
Tip revision: 598b45b
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