-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathriotfile.py
More file actions
77 lines (73 loc) · 1.99 KB
/
riotfile.py
File metadata and controls
77 lines (73 loc) · 1.99 KB
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
74
75
76
77
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.11", "3.12", "3.13"],
pkgs={pkg: latest for pkg in testing_deps},
),
Venv(
pkgs={
"black": latest,
"isort": latest,
"toml": latest,
},
pys=["3.11"],
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}",
pys=["3.11"],
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}",
pys=["3.11"],
pkgs={
"mypy": "==1.7.1",
"pytest": latest,
"types-protobuf": latest,
"types-requests": latest,
"types-setuptools": latest,
"types-PyYAML": latest,
},
),
Venv(
name="reno",
pkgs={
"reno": latest,
},
command="reno {cmdargs}",
),
],
)