File: tox.ini

package info (click to toggle)
jellyfin-apiclient-python 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 276 kB
  • sloc: python: 1,690; sh: 5; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 372 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
22
23
24
25
[tox]
envlist =
    lint,
    py{38,39,310,311,312},

[gh-actions]
python =
    3.8: py38
    3.9: py39
    3.10: py310, lint
    3.11: py311
    3.12: py312

[testenv]
deps =
    pytest
commands = pytest {posargs}

[testenv:lint]
basepython = python3.10
skip_install = true
deps =
    ruff
commands =
    ruff check --exit-non-zero-on-fix jellyfin_apiclient_python tests