https://github.com/robotframework/RIDE
Raw File
Tip revision: 320f02f83e19746dad3ef2920d93bdadd3585de7 authored by HelioGuilherme66 on 01 November 2023, 16:29:11 UTC
Version 2.0.8.1
Tip revision: 320f02f
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