https://github.com/robotframework/RIDE
Raw File
Tip revision: 0e00de57acd5d09c2d461ee0ae00c9e263e2134e authored by Hélio Guilherme on 08 May 2023, 02:48:49 UTC
Change Library alias to use AS and not WITH NAME. Add FOR selectors to auto-complete (#2586)
Tip revision: 0e00de5
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