-
Notifications
You must be signed in to change notification settings - Fork 28
/
tasks.py
147 lines (118 loc) · 3.25 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
"""
Tasks for maintaining the project.
Execute 'invoke --list' for guidance on using Invoke
"""
import shutil
import platform
from invoke import task
from pathlib import Path
ROOT_DIR = Path(__file__).parent
SETUP_FILE = ROOT_DIR.joinpath("setup.py")
TEST_DIR = ROOT_DIR.joinpath("tests")
SOURCE_DIR = ROOT_DIR.joinpath("spikex")
PYTHON_DIRS = [str(d) for d in (SOURCE_DIR, TEST_DIR)]
# def _delete_file(file):
# try:
# file.unlink(missing_ok=True)
# except TypeError:
# # missing_ok argument only
# # added since python 3.8
# try:
# file.unlink()
# except FileNotFoundError:
# pass
@task(help={'check': "Checks if source is formatted without applying changes"})
def format(c, check=False):
"""
Format code
"""
python_dirs_string = " ".join(PYTHON_DIRS)
# Run autoflake
autoflake_options = [
"--check" if check else "--in-place",
"--ignore-init-module-imports",
"--recursive",
"--remove-all-unused-imports",
]
c.run("autoflake {} {}".format(" ".join(autoflake_options), python_dirs_string))
# Run yapf
yapf_options = "--recursive {}".format("--diff" if check else "--in-place")
c.run("yapf {} {}".format(yapf_options, python_dirs_string))
# Run isort
isort_options = [
"--check-only" if check else "",
"--combine-as",
"--force-grid-wrap=0",
"--line-width 79", # PEP 8 says 79.
"--multi-line=3",
"--trailing-comma",
]
c.run("isort {} {}".format(" ".join(isort_options), python_dirs_string))
# Run black
black_options = [
"--check" if check else "",
"--line-length 79",
]
c.run("black {} {}".format(" ".join(black_options), python_dirs_string))
# Run vulture
vulture_options = [
"--min-confidence 70"
]
c.run("vulture {} {}".format(" ".join(vulture_options), python_dirs_string))
@task
def lint_flake8(c):
"""
Lint code with flake8
"""
c.run("flake8 {} --count --select=E901,E999,F821,F822,F823 --show-source --statistics".format(" ".join(PYTHON_DIRS)))
@task
def lint_pylint(c):
"""
Lint code with pylint
"""
c.run("pylint {}".format(" ".join(PYTHON_DIRS)))
@task(lint_flake8) # , lint_pylint)
def lint(c):
"""
Run all linting
"""
pass
@task
def test(c):
"""
Run tests
"""
pty = platform.system() == 'Linux'
c.run("pytest", pty=pty)
@task
def clean_build(c):
"""
Clean up files from package building
"""
c.run("rm -fr build/")
c.run("rm -fr dist/")
c.run("rm -fr .eggs/")
c.run("find . -name '*.egg-info' -exec rm -fr {} +")
c.run("find . -name '*.egg' -exec rm -f {} +")
@task
def clean_python(c):
"""
Clean up python file artifacts
"""
c.run("find . -name '*.pyc' -exec rm -f {} +")
c.run("find . -name '*.pyo' -exec rm -f {} +")
c.run("find . -name '*~' -exec rm -f {} +")
c.run("find . -name '__pycache__' -exec rm -fr {} +")
@task(pre=[clean_build, clean_python])
def clean(c):
"""
Runs all clean sub-tasks
"""
pass
@task(clean)
def dist(c):
"""
Build source and wheel packages
"""
c.run("python setup.py sdist")
c.run("python setup.py bdist_wheel")