File: tox.ini

package info (click to toggle)
python-screed 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 820 kB
  • sloc: python: 3,356; makefile: 169; sh: 32; javascript: 16
file content (31 lines) | stat: -rw-r--r-- 472 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
26
27
28
29
30
31
[tox]
envlist = py38, py39, py310
minversion = 3.12
isolated_build = true
skip_missing_interpreters = true

[testenv]
passenv =
  CI
  GITHUB_ACTION
  GITHUB_REF
  GITHUB_HEAD_REF
  GITHUB_RUN_ID
  GITHUB_SHA
  GITHUB_REPOSITORY
allowlist_externals = make
commands =
  make install-dependencies
  pytest --cov -m 'not known_failing' --cov-report xml
  make pep8
  make doc
deps =
  pytest
  pytest-cov
  sphinx

[gh-actions]
python =
  3.8: py38
  3.9: py39
  3.10: py310