-
Notifications
You must be signed in to change notification settings - Fork 5
/
riotfile.py
73 lines (69 loc) · 1.89 KB
/
riotfile.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from riot import Venv
from riot import latest
with open("test_deps.txt") as f:
testing_deps = [line.strip() for line in f.readlines()]
venv = Venv(
pys=["3"],
venvs=[
Venv(
name="test",
command="pytest {cmdargs}",
pys=["3.8", "3.9", "3.10", "3.11", "3.12"],
pkgs={pkg: latest for pkg in testing_deps},
),
Venv(
pkgs={
"black": latest,
"isort": latest,
"toml": latest,
},
venvs=[
Venv(
name="black",
command="black {cmdargs}",
),
Venv(
name="fmt",
command="isort . && black .",
),
Venv(
name="check_fmt",
command="isort --check . && black --check .",
),
],
),
Venv(
name="flake8",
command="flake8 {cmdargs}",
pkgs={
"flake8": latest,
"flake8-blind-except": latest,
"flake8-builtins": latest,
"flake8-docstrings": latest,
# "flake8-logging-format": latest,
"flake8-rst-docstrings": latest,
"pygments": latest,
"toml": latest,
},
),
Venv(
name="mypy",
create=True,
command="mypy {cmdargs}",
pkgs={
"mypy": "==1.7.1",
"pytest": latest,
"types-protobuf": latest,
"types-requests": latest,
"types-setuptools": latest,
},
),
Venv(
name="reno",
pkgs={
"reno": latest,
},
command="reno {cmdargs}",
),
],
)