https://github.com/robotframework/RIDE
Raw File
Tip revision: a2fafc6a3403becf357b4b2386fcc500dc4aaa0a authored by Hélio Guilherme on 05 February 2023, 15:34:22 UTC
Revert "Add install of wxPython (#2534)"
Tip revision: a2fafc6
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