-
Notifications
You must be signed in to change notification settings - Fork 3
/
tasks.py
206 lines (140 loc) · 4.34 KB
/
tasks.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#
# -*- coding: utf-8 -*-
"""Development related tasks to be run with 'invoke'"""
import os
import shutil
#
# python 3.11 removed inspect.getargspec, which breaks invoke
#
# so we monkeypatch it here until invoke gets this fixed
import inspect
if not hasattr(inspect, "getargspec"):
inspect.getargspec = inspect.getfullargspec
# end monkeypatch
import invoke
# shared function
def rmrf(items, verbose=True):
"Silently remove a list of directories or files"
if isinstance(items, str):
items = [items]
for item in items:
if verbose:
print(f"Removing {item}")
shutil.rmtree(item, ignore_errors=True)
# rmtree doesn't remove bare files
try:
os.remove(item)
except FileNotFoundError:
pass
# create namespaces
namespace = invoke.Collection()
namespace_clean = invoke.Collection("clean")
namespace.add_collection(namespace_clean, "clean")
namespace_check = invoke.Collection("check")
namespace.add_collection(namespace_check, "check")
#####
#
# pytest, pylint, and codecov
#
#####
@invoke.task
def pytest(context):
"Run tests and code coverage using pytest"
context.run("pytest", echo=True, pty=True)
namespace.add_task(pytest)
namespace_check.add_task(pytest)
@invoke.task
def pytest_clean(context):
"Remove pytest cache and code coverage files and directories"
# pylint: disable=unused-argument
dirs = [".pytest_cache", ".cache", ".coverage"]
rmrf(dirs)
namespace_clean.add_task(pytest_clean, "pytest")
@invoke.task
def pylint(context):
"Check code quality using pylint"
context.run("pylint src/ksc tests", echo=True)
namespace.add_task(pylint)
namespace_check.add_task(pylint)
@invoke.task
def black_check(context):
"""Check if code is properly formatted using black"""
context.run("black --check *.py tests src", echo=True)
namespace.add_task(black_check)
namespace_check.add_task(black_check)
@invoke.task
def black(context):
"""Format code using black"""
context.run("black *.py tests src", echo=True)
namespace.add_task(black)
#####
#
# build and distribute
#
#####
BUILDDIR = "build"
DISTDIR = "dist"
@invoke.task
def build_clean(context):
"Remove the build directory"
# pylint: disable=unused-argument
rmrf(BUILDDIR)
namespace_clean.add_task(build_clean, "build")
@invoke.task
def dist_clean(context):
"Remove the dist directory"
# pylint: disable=unused-argument
rmrf(DISTDIR)
namespace_clean.add_task(dist_clean, "dist")
@invoke.task
def eggs_clean(context):
"Remove egg directories"
# pylint: disable=unused-argument
dirs = set()
dirs.add(".eggs")
for name in os.listdir(os.curdir):
if name.endswith(".egg-info"):
dirs.add(name)
if name.endswith(".egg"):
dirs.add(name)
rmrf(dirs)
namespace_clean.add_task(eggs_clean, "eggs")
@invoke.task
def bytecode_clean(context):
"Remove __pycache__ directories and *.pyc files"
# pylint: disable=unused-argument
dirs = set()
for root, dirnames, files in os.walk(os.curdir):
if "__pycache__" in dirnames:
dirs.add(os.path.join(root, "__pycache__"))
for file in files:
if file.endswith(".pyc"):
dirs.add(os.path.join(root, file))
print("Removing __pycache__ directories and .pyc files")
rmrf(dirs, verbose=False)
namespace_clean.add_task(bytecode_clean, "bytecode")
@invoke.task(pre=list(namespace_check.tasks.values()), default=True)
def check_all(context):
"Run this before you commit or submit a pull request"
# pylint: disable=unused-argument
namespace_check.add_task(check_all, "all")
@invoke.task(pre=list(namespace_clean.tasks.values()), default=True)
def clean_all(context):
"Clean everything"
# pylint: disable=unused-argument
namespace_clean.add_task(clean_all, "all")
@invoke.task(pre=[clean_all])
def build(context):
"Create a source distribution"
context.run("python -m build")
namespace.add_task(build)
@invoke.task(pre=[build])
def pypi(context):
"Build and upload a distribution to pypi"
context.run("twine upload dist/*")
namespace.add_task(pypi)
@invoke.task(pre=[build])
def pypi_test(context):
"Build and upload a distribution to https://test.pypi.org"
context.run("twine upload --repository-url https://test.pypi.org/legacy/ dist/*")
namespace.add_task(pypi_test)