-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
130 lines (107 loc) · 2.69 KB
/
build.gradle
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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'ru.vyarus.use-python' version '2.3.0'
id "com.star-zero.gradle.githook" version "1.2.1"
}
allprojects {
repositories {
mavenCentral()
}
}
task install{
}
task check{
}
task build{
}
python.installVirtualenv = true
python.envPath = ".venv"
python{
pip "poetry:1.2.2"
}
githook {
hooks {
"pre-commit" {
task = "formatCheck"
}
"pre-push" {
task = "lint"
}
}
}
def pythonSourceFolders = ['py_typescript_generator', 'tests']
task poetryInstall(type: PythonTask) {
dependsOn 'pipInstall'
command = "-m poetry install"
inputs.file('pyproject.toml')
inputs.file('poetry.lock')
outputs.file('poetryInstallOutput')
}
task pythonInstall{ // TODO inline this
dependsOn 'poetryInstall'
}
task pythonUnitTests(type: PythonTask){
dependsOn 'pythonInstall'
command = "-m pytest tests/unittests -v --html=tests/reports/unittests.html --self-contained-html"
pythonSourceFolders.forEach { inputs.dir(it) }
outputs.file('pytestOutput')
}
task poetryBuild(type: PythonTask){
dependsOn 'pythonInstall'
dependsOn 'pythonUnitTests'
command = '-m poetry build'
inputs.dir('py_typescript_generator')
inputs.file('pyproject.toml')
inputs.file('poetry.lock')
outputs.dir('dist')
}
task formatPythonCheck(type: PythonTask){
dependsOn 'pythonInstall'
command = "-m black ${pythonSourceFolders.join(' ')} --check"
pythonSourceFolders.forEach { inputs.dir(it) }
outputs.file('formatPythonCheck')
}
task formatPython(type:PythonTask){
dependsOn 'pythonInstall'
command = "-m black ${pythonSourceFolders.join(' ')}"
pythonSourceFolders.forEach { inputs.dir(it) }
outputs.file('formatPython')
}
task lintPython(type:PythonTask){
dependsOn 'pythonInstall'
command = "-m flake8 ${pythonSourceFolders.join(' ')}"
pythonSourceFolders.forEach { inputs.dir(it) }
outputs.file('lintPython')
}
task mypyCheck(type:PythonTask){
dependsOn 'pythonInstall'
command = "-m mypy -p ${pythonSourceFolders.join(' -p ')}"
pythonSourceFolders.forEach { inputs.dir(it) }
inputs.file("mypy.ini")
outputs.file('mypyCheck')
}
task formatCheck{
dependsOn 'formatPythonCheck'
}
task format{
dependsOn 'formatPython'
}
task lint{
dependsOn 'lintPython'
dependsOn 'mypyCheck'
}
task poetryUpdate(type: PythonTask){
command = '-m poetry update'
}
task updateDependencies{
dependsOn 'poetryUpdate'
}
install.dependsOn('pythonInstall')
check.dependsOn('pythonUnitTests')
check.dependsOn('pythonIntegrationTests')
build.dependsOn('poetryBuild')
build.dependsOn('lintPython')