-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpie_tasks.py
244 lines (191 loc) · 8.86 KB
/
pie_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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
import os
import shutil
try:
import winreg
except ImportError as ie:
# probably running on python2
import _winreg as winreg
from pie import *
from pie import CmdContext, CmdContextManager
VENV_BUILD = ".venvs\\build"
VENV_TEST_PY2_X86_32 = ".venvs\\test-py2-x86_32"
VENV_TEST_PY2_X86_64 = ".venvs\\test-py2-x86_64"
VENV_TEST_PY3_X86_64 = ".venvs\\test-py3"
@task
def build():
with conda(VENV_BUILD, get_arcgis_pro_conda_path()):
cmd(r'python -m build --wheel --no-isolation')
@task
def setup():
createVenvs()
updatePackages()
@task
def createVenvs():
remove_dir(VENV_BUILD)
conda(VENV_BUILD,
get_arcgis_pro_conda_path()).clone("arcgispro-py3", extraArguments="--copy --no-shortcuts --offline")
remove_dir(VENV_TEST_PY3_X86_64)
conda(VENV_TEST_PY3_X86_64,
get_arcgis_pro_conda_path()).clone("arcgispro-py3", extraArguments="--copy --no-shortcuts --offline")
python2_32bit_path = os.path.join(get_arcpy2_python_path(), "Python.exe")
python2_64bit_path = os.path.join(get_arcpy2_python_path(True), "Python.exe")
create_venv(python2_32bit_path, VENV_TEST_PY2_X86_32)
create_venv(python2_64bit_path, VENV_TEST_PY2_X86_64)
@task
def updatePackages():
with conda(VENV_BUILD, get_arcgis_pro_conda_path()):
pip(r'install -U pip -c constraints.txt')
pip(r'install -U -r requirements.build.txt -c constraints.txt')
pip(r'install -U -r requirements.txt -c constraints.txt')
with conda(VENV_TEST_PY3_X86_64, get_arcgis_pro_conda_path()):
pip(r'install -U pip -c constraints.txt')
pip(r'install -r requirements.build.txt -c constraints.txt')
pip(r'install -r requirements.test.txt -c constraints.txt')
pip(r'install -r requirements.txt -c constraints.txt')
cmd(r'python setup.py develop')
with venv(VENV_TEST_PY2_X86_32):
pip(r'install -U pip -c constraints.txt')
pip(r'install -U -r requirements.build.txt -c constraints.txt')
pip(r'install -U -r requirements.test.txt -c constraints.txt')
pip(r'install -U -r requirements.txt -c constraints.txt')
cmd(r'python setup.py develop')
with venv(VENV_TEST_PY2_X86_64):
pip(r'install -U pip -c constraints.txt')
pip(r'install -U -r requirements.build.txt -c constraints.txt')
pip(r'install -U -r requirements.test.txt -c constraints.txt')
pip(r'install -U -r requirements.txt -c constraints.txt')
cmd(r'python setup.py develop')
@task([OptionsParameter('filter', use_default=True)])
def test(filter=None):
if not filter:
with venv(VENV_TEST_PY2_X86_32):
try:
cmd("python -m pytest tests --cov=arcpyext")
except CmdContextManager.CmdError:
# ignore cmd line errors for testing purposes
pass
with venv(VENV_TEST_PY2_X86_64):
try:
cmd("python -m pytest tests --cov=arcpyext --cov-append")
except CmdContextManager.CmdError:
# ignore cmd line errors for testing purposes
pass
with conda(VENV_TEST_PY3_X86_64, get_arcgis_pro_conda_path()):
try:
cmd("python -m pytest tests --cov=arcpyext --cov-append --cov-report=term --cov-report=html")
except CmdContextManager.CmdError:
# ignore cmd line errors for testing purposes
pass
else:
with venv(VENV_TEST_PY2_X86_32):
try:
cmd("python -m pytest tests --cov=arcpyext -k {}".format(filter.replace("'", "\\'")))
except CmdContextManager.CmdError:
# ignore cmd line errors for testing purposes
pass
with venv(VENV_TEST_PY2_X86_64):
try:
cmd("python -m pytest tests --cov=arcpyext --cov-append -k {}".format(filter.replace("'", "\\'")))
except CmdContextManager.CmdError:
# ignore cmd line errors for testing purposes
pass
with conda(VENV_TEST_PY3_X86_64, get_arcgis_pro_conda_path()):
try:
cmd(
"python -m pytest tests --cov=arcpyext --cov-append --cov-report=term --cov-report=html -k {}".
format(filter.replace("'", "\\'"))
)
except CmdContextManager.CmdError:
# ignore cmd line errors for testing purposes
pass
@task([OptionsParameter('version')])
def upload(version):
with conda(VENV_BUILD, get_arcgis_pro_conda_path()):
cmd(r'python -m twine check dist\arcpyext-{}-py2.py3-none-any.whl'.format(version))
cmd(r'python -m twine upload dist\arcpyext-{}-py2.py3-none-any.whl'.format(version))
class conda(CmdContext):
"""A context class used to execute commands within a conda environment"""
def __init__(self, path, conda_path):
self.conda_path = os.path.abspath(conda_path)
self.path = os.path.abspath(path)
def clone(self, env_to_clone, extraArguments=''):
"""Creates a conda environment by running conda and cloning an existing named environment."""
cmd(
r'"{}" create {} --prefix "{}" --clone "{}"'.format(
self.conda_path, extraArguments, self.path, env_to_clone
)
)
def cmd(self, c):
"""Runs the command `c` in this conda environment."""
activate_path = os.path.join(os.path.dirname(self.conda_path), "activate.bat")
scripts_path = os.path.join(self.path, "Scripts")
c = 'cmd /v /c ""{}" && set PATH={};{};!PATH! && {}"'.format(activate_path, self.path, scripts_path, c)
return CmdContextManager.cmd(c, self.contextPosition)
def enter_hook(self):
self.old_python_cmd = CmdContextManager.python_cmd
CmdContextManager.python_cmd = self._binary_path("python")
def exit_hook(self):
CmdContextManager.python_cmd = self.old_python_cmd
def _binary_path(self, binary):
return r"{}{}{}".format(self.path, "\\", binary)
def create_venv(python_path, venv_path):
remove_dir(venv_path)
cmd("\"{}\" -m virtualenv \"{}\" --system-site-packages".format(python_path, venv_path))
def get_arcpy2_python_path(get_64bit_path=False):
# open the registry at HKEY_LOCAL_MACHINE
hklm_key = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE)
try:
# get root ArcGIS key
if get_64bit_path:
arcgis_key = winreg.OpenKey(
hklm_key, "SOFTWARE\\ESRI\\Desktop Background Geoprocessing (64-bit)", 0,
winreg.KEY_READ | winreg.KEY_WOW64_64KEY
)
else:
arcgis_key = winreg.OpenKey(hklm_key, "SOFTWARE\\ESRI\\ArcGIS", 0, winreg.KEY_READ | winreg.KEY_WOW64_32KEY)
# get installed version, split into parts
version_info = winreg.QueryValueEx(arcgis_key, "RealVersion")[0].split(".")
if get_64bit_path:
return _get_python2_path(
hklm_key, "ArcGISx64", version_info[0], version_info[1], winreg.KEY_READ | winreg.KEY_WOW64_64KEY
)
else:
return _get_python2_path(
hklm_key, "ArcGIS", version_info[0], version_info[1], winreg.KEY_READ | winreg.KEY_WOW64_32KEY
)
finally:
# close the registry
winreg.CloseKey(hklm_key)
def get_arcgis_pro_conda_path():
return os.path.join(_get_arcgis_pro_conda_root_path(), r"Scripts\conda.exe")
def remove_dir(venv_path):
if os.path.isdir(venv_path):
shutil.rmtree(venv_path)
def _get_arcgis_pro_conda_root_path():
# open the registry at HKEY_LOCAL_MACHINE
hklm_key = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE)
try:
# attempt to get the ArcGIS Pro installation details
arcgis_pro_key = winreg.OpenKey(
hklm_key, "SOFTWARE\\ESRI\\ArcGISPro", 0, winreg.KEY_READ | winreg.KEY_WOW64_64KEY
)
env_name = winreg.QueryValueEx(arcgis_pro_key, "PythonCondaEnv")[0]
install_root = winreg.QueryValueEx(arcgis_pro_key, "PythonCondaRoot")[0]
winreg.CloseKey(arcgis_pro_key)
except WindowsError as we:
raise Exception("ArcGIS Pro not installed.")
finally:
# close the registry
winreg.CloseKey(hklm_key)
return os.path.normpath(install_root)
def _get_python2_path(hklm_key, install_name, major_version, minor_version, sam):
# format ArcGIS Desktop python key path from version info, get key
python_desktop_key_path = "SOFTWARE\\ESRI\\Python{0}.{1}".format(major_version, minor_version)
python_desktop_key = None
try:
python_desktop_key = winreg.OpenKey(hklm_key, python_desktop_key_path, 0, sam)
python_root = winreg.QueryValueEx(python_desktop_key, "PythonDir")[0]
return os.path.join(python_root, "{0}{1}.{2}".format(install_name, major_version, minor_version))
finally:
if python_desktop_key:
winreg.CloseKey(python_desktop_key)