forked from callmesora/llmops-python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcleans.py
137 lines (85 loc) · 2.47 KB
/
cleans.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
"""Clean tasks for pyinvoke."""
# %% IMPORTS
from invoke.context import Context
from invoke.tasks import task
# %% TASKS
# %% - Tools
@task
def mypy(ctx: Context) -> None:
"""Clean the mypy tool."""
ctx.run("rm -rf .mypy_cache/")
@task
def ruff(ctx: Context) -> None:
"""Clean the ruff tool."""
ctx.run("rm -rf .ruff_cache/")
@task
def pytest(ctx: Context) -> None:
"""Clean the pytest tool."""
ctx.run("rm -rf .pytest_cache/")
@task
def coverage(ctx: Context) -> None:
"""Clean the coverage tool."""
ctx.run("rm -f .coverage*")
# %% - Folders
@task
def dist(ctx: Context) -> None:
"""Clean the dist folder."""
ctx.run("rm -f dist/*")
@task
def docs(ctx: Context) -> None:
"""Clean the docs folder."""
ctx.run("rm -rf docs/*")
@task
def cache(ctx: Context) -> None:
"""Clean the cache folder."""
ctx.run("rm -rf .cache/")
@task
def mlruns(ctx: Context) -> None:
"""Clean the mlruns folder."""
ctx.run("rm -rf mlruns/*")
@task
def outputs(ctx: Context) -> None:
"""Clean the outputs folder."""
ctx.run("rm -rf outputs/*")
# %% - Sources
@task
def venv(ctx: Context) -> None:
"""Clean the venv folder."""
ctx.run("rm -rf .venv/")
@task
def poetry(ctx: Context) -> None:
"""Clean poetry lock file."""
ctx.run("rm -f poetry.lock")
@task
def python(ctx: Context) -> None:
"""Clean python caches and bytecodes."""
ctx.run("find . -type f -name '*.py[co]' -delete")
ctx.run(r"find . -type d -name __pycache__ -exec rm -r {} \+")
# %% PROJECTS
@task
def requirements(ctx: Context) -> None:
"""Clean the project requirements file."""
ctx.run("rm -f requirements.txt")
@task
def environment(ctx: Context) -> None:
"""Clean the project environment file."""
ctx.run("rm -f python_env.yaml")
# %% - Combines
@task(pre=[mypy, ruff, pytest, coverage])
def tools(_: Context) -> None:
"""Run all tools tasks."""
@task(pre=[dist, docs, cache, mlruns, outputs])
def folders(_: Context) -> None:
"""Run all folders tasks."""
@task(pre=[venv, poetry, python])
def sources(_: Context) -> None:
"""Run all sources tasks."""
@task(pre=[requirements, environment])
def projects(_: Context) -> None:
"""Run all projects tasks."""
@task(pre=[tools, folders], default=True)
def all(_: Context) -> None:
"""Run all tools and folders tasks."""
@task(pre=[all, sources, projects])
def reset(_: Context) -> None:
"""Run all tools, folders, sources, and projects tasks."""