https://github.com/robotframework/RIDE
Raw File
Tip revision: 651595e926ba04556222265af5007124e134b122 authored by HelioGuilherme66 on 13 August 2023, 21:53:40 UTC
Version 2.0.7
Tip revision: 651595e
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