https://github.com/robotframework/RIDE
Raw File
Tip revision: 863917840f88142e816969cac0c31a7477ff01a4 authored by Hélio Guilherme on 17 April 2023, 00:06:24 UTC
Release/2.0.3 (#2579)
Tip revision: 8639178
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