File: tox.ini

package info (click to toggle)
python-redfish 3.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 404 kB
  • sloc: python: 2,948; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 330 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
envlist = py38,py39,py311

[testenv]
usedevelop = True
install_command = pip install {opts} {packages}
deps =
    coverage
    fixtures
    pytest
    -rrequirements.txt
commands =
    pytest -v

[testenv:pep8]
basepython = python3
deps = flake8
commands = flake8 tests/ src/redfish/discovery

[travis]
python = 3.11: py311