https://github.com/robotframework/RIDE
Raw File
Tip revision: 727339fe3cb29dc99dcc1818a786eb16f8ff6783 authored by HelioGuilherme66 on 01 November 2023, 01:59:38 UTC
Version 2.0.8
Tip revision: 727339f
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