forked from containers/podman-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
37 lines (31 loc) · 809 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tox]
minversion = 3.2.0
envlist = pylint,coverage,py36,py38,py39,py310,py311
ignore_basepython_conflict = true
[testenv]
basepython = python3
usedevelop = True
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/test-requirements.txt
commands = pytest {posargs}
setenv =
PODMAN_LOG_LEVEL = {env:PODMAN_LOG_LEVEL:INFO}
PODMAN_BINARY = {env:PODMAN_BINARY:podman}
DEBUG = {env:DEBUG:0}
[testenv:venv]
commands = {posargs}
[testenv:pylint]
allowlist_externals = pylint
commands = pylint podman
[testenv:coverage]
commands =
coverage run -m pytest
coverage report -m --skip-covered --fail-under=80 --omit=podman/tests/* --omit=.tox/*
[testenv:black]
deps = black
commands =
black --diff --check .
[testenv:black-format]
deps = black
commands =
black {posargs} .