File: tox.ini

package info (click to toggle)
python-cs 3.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: python: 1,127; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 362 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
[tox]
envlist =
	py{39,310,311,312,313}
	lint
skip_missing_interpreters = True

[gh-actions]
	3.9: py39
	3.10: py310
	3.11: py311
	3.12: py312
	3.13: py313

[testenv]
deps=
	aiohttp
	check-manifest
	flake8
	flake8-import-order
	pytest
	pytest-cache
	pytest-cov
commands =
	pip wheel --no-deps -w dist .
	test: pytest -v
	check-manifest
	lint: flake8 cs tests.py