jolt 0.9.395__py3-none-any.whl → 0.9.404__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of jolt might be problematic. Click here for more details.
- jolt/plugins/git.py +8 -2
- jolt/plugins/selfdeploy.py +11 -6
- jolt/version.py +1 -1
- {jolt-0.9.395.dist-info → jolt-0.9.404.dist-info}/METADATA +104 -18
- {jolt-0.9.395.dist-info → jolt-0.9.404.dist-info}/RECORD +8 -8
- {jolt-0.9.395.dist-info → jolt-0.9.404.dist-info}/WHEEL +0 -0
- {jolt-0.9.395.dist-info → jolt-0.9.404.dist-info}/entry_points.txt +0 -0
- {jolt-0.9.395.dist-info → jolt-0.9.404.dist-info}/top_level.txt +0 -0
jolt/plugins/git.py
CHANGED
|
@@ -111,7 +111,7 @@ class GitRepository(object):
|
|
|
111
111
|
|
|
112
112
|
utils.call_and_catch(self.tools.run, "git remote remove origin", output=False)
|
|
113
113
|
self.tools.run("git remote add origin {}", self.url, output_on_error=True)
|
|
114
|
-
self.
|
|
114
|
+
self._fetch_origin()
|
|
115
115
|
self.tools.run("git checkout -f FETCH_HEAD", output_on_error=True)
|
|
116
116
|
else:
|
|
117
117
|
if refpath and os.path.isdir(refpath):
|
|
@@ -124,6 +124,11 @@ class GitRepository(object):
|
|
|
124
124
|
self.repository is None,
|
|
125
125
|
"Failed to clone repository '{0}'", self.relpath)
|
|
126
126
|
|
|
127
|
+
@utils.retried.on_exception(JoltCommandError, pattern="Command failed: git fetch", count=6, backoff=[2, 5, 10, 15, 20, 30])
|
|
128
|
+
def _fetch_origin(self):
|
|
129
|
+
with self.tools.cwd(self.path):
|
|
130
|
+
self.tools.run("git fetch origin", output_on_error=True)
|
|
131
|
+
|
|
127
132
|
@utils.cached.instance
|
|
128
133
|
def diff_unchecked(self):
|
|
129
134
|
if not self.is_indexed():
|
|
@@ -247,6 +252,7 @@ class GitRepository(object):
|
|
|
247
252
|
with self.tools.cwd(self.path):
|
|
248
253
|
return self.tools.run("git reset --hard", output_on_error=True)
|
|
249
254
|
|
|
255
|
+
@utils.retried.on_exception(JoltCommandError, pattern="Command failed: git fetch", count=6, backoff=[2, 5, 10, 15, 20, 30])
|
|
250
256
|
def fetch(self, commit=None):
|
|
251
257
|
if commit and not self.is_valid_sha(commit):
|
|
252
258
|
commit = None
|
|
@@ -255,7 +261,7 @@ class GitRepository(object):
|
|
|
255
261
|
with self.tools.cwd(self.path):
|
|
256
262
|
log.info("Fetching {0} from {1}", commit or refspec or 'commits', self.url)
|
|
257
263
|
self.tools.run(
|
|
258
|
-
"git fetch --prune {url} {what}",
|
|
264
|
+
"git fetch --force --prune {url} {what}",
|
|
259
265
|
url=self.url,
|
|
260
266
|
what=commit or refspec or '',
|
|
261
267
|
output_on_error=True)
|
jolt/plugins/selfdeploy.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import importlib_metadata
|
|
1
2
|
import os
|
|
2
|
-
import pkg_resources
|
|
3
3
|
|
|
4
4
|
from jolt import config
|
|
5
5
|
from jolt import filesystem as fs
|
|
@@ -104,17 +104,22 @@ def get_dependencies(packages=None):
|
|
|
104
104
|
while reqs:
|
|
105
105
|
req = reqs.pop()
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
try:
|
|
108
|
+
dist = importlib_metadata.distribution(req)
|
|
109
|
+
except (ImportError, importlib_metadata.PackageNotFoundError):
|
|
110
|
+
dist = None
|
|
111
|
+
except Exception:
|
|
112
|
+
dist = None
|
|
108
113
|
if dist is None:
|
|
109
114
|
log.debug("[SelfDeploy] Dependency not found: {}", req)
|
|
110
115
|
pkgs[req] = req
|
|
111
116
|
continue
|
|
112
117
|
|
|
113
|
-
for dep in dist.requires
|
|
114
|
-
if dep
|
|
115
|
-
reqs.append(dep
|
|
118
|
+
for dep in dist.requires or []:
|
|
119
|
+
if dep not in pkgs:
|
|
120
|
+
reqs.append(dep)
|
|
116
121
|
|
|
117
|
-
pkgs[req] = f"{dist.
|
|
122
|
+
pkgs[req] = f"{dist.name}=={dist.version}"
|
|
118
123
|
|
|
119
124
|
try:
|
|
120
125
|
del pkgs["jolt"]
|
jolt/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.9.
|
|
1
|
+
__version__ = "0.9.404"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jolt
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.404
|
|
4
4
|
Summary: A task executor
|
|
5
5
|
Home-page: https://github.com/srand/jolt
|
|
6
6
|
Author: Robert Andersson
|
|
@@ -21,39 +21,125 @@ Classifier: Programming Language :: Java
|
|
|
21
21
|
Classifier: Programming Language :: JavaScript
|
|
22
22
|
Classifier: Programming Language :: Python :: 3
|
|
23
23
|
Requires-Python: >=3.8
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
24
|
+
Requires-Dist: Babel>=2.7; extra == "i18n"
|
|
25
|
+
Requires-Dist: BeautifulSoup4; extra == "htmlsoup"
|
|
26
|
+
Requires-Dist: Cython>=3.0.11; extra == "source"
|
|
27
|
+
Requires-Dist: Jinja2==3.1.4
|
|
28
|
+
Requires-Dist: MarkupSafe>=2.0
|
|
29
|
+
Requires-Dist: PySocks!=1.5.7,>=1.5.6; extra == "socks"
|
|
30
|
+
Requires-Dist: SecretStorage>=3.2; sys_platform == "linux"
|
|
31
|
+
Requires-Dist: allure-python-commons; extra == "allure"
|
|
32
|
+
Requires-Dist: backports.tarfile; python_version < "3.12"
|
|
27
33
|
Requires-Dist: bz2file==0.98
|
|
28
|
-
Requires-Dist: certifi
|
|
29
|
-
Requires-Dist: cffi
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
34
|
+
Requires-Dist: certifi>=2017.4.17
|
|
35
|
+
Requires-Dist: cffi>=1.11; extra == "cffi"
|
|
36
|
+
Requires-Dist: cffi>=1.11; platform_python_implementation == "PyPy"
|
|
37
|
+
Requires-Dist: cffi>=1.16.0
|
|
38
|
+
Requires-Dist: chardet<6,>=3.0.2; extra == "use-chardet-on-py3"
|
|
39
|
+
Requires-Dist: charset-normalizer<4,>=2
|
|
40
|
+
Requires-Dist: check-manifest; extra == "dev"
|
|
41
|
+
Requires-Dist: click>=8.1
|
|
42
|
+
Requires-Dist: codecov>=2.0.5; extra == "test"
|
|
43
|
+
Requires-Dist: colorama; platform_system == "Windows"
|
|
32
44
|
Requires-Dist: colorama==0.4.6
|
|
45
|
+
Requires-Dist: conan>=2.0; extra == "conan"
|
|
46
|
+
Requires-Dist: coverage>=4.2; extra == "test"
|
|
47
|
+
Requires-Dist: coverage; extra == "test"
|
|
48
|
+
Requires-Dist: cssselect>=0.7; extra == "cssselect"
|
|
49
|
+
Requires-Dist: enum34; python_version <= "3.4" and extra == "test"
|
|
33
50
|
Requires-Dist: fasteners==0.19
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
51
|
+
Requires-Dist: flake8>=3.0.4; extra == "test"
|
|
52
|
+
Requires-Dist: flufl.flake8; extra == "test"
|
|
53
|
+
Requires-Dist: furo; extra == "doc"
|
|
54
|
+
Requires-Dist: furo; extra == "docs"
|
|
55
|
+
Requires-Dist: gdata; python_version == "2.7" and extra == "test"
|
|
56
|
+
Requires-Dist: grpcio>=1.62.2
|
|
57
|
+
Requires-Dist: html5lib; extra == "html5"
|
|
58
|
+
Requires-Dist: idna<4,>=2.5
|
|
59
|
+
Requires-Dist: importlib-metadata>=4.11.4; python_version < "3.12"
|
|
60
|
+
Requires-Dist: importlib-resources; python_version < "3.9"
|
|
61
|
+
Requires-Dist: importlib-resources>=1.3; python_version < "3.9" and extra == "test"
|
|
62
|
+
Requires-Dist: importlib_metadata==8.5.0
|
|
63
|
+
Requires-Dist: ipaddress; python_version < "3.0" and extra == "test"
|
|
64
|
+
Requires-Dist: ipython; extra == "perf"
|
|
65
|
+
Requires-Dist: ipywidgets>=6; extra == "notebook"
|
|
66
|
+
Requires-Dist: jaraco.classes; extra == "test"
|
|
38
67
|
Requires-Dist: jaraco.classes==3.4.0
|
|
39
68
|
Requires-Dist: jaraco.context==6.0.1
|
|
40
69
|
Requires-Dist: jaraco.functools==4.0.2
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
70
|
+
Requires-Dist: jaraco.packaging>=9.3; extra == "doc"
|
|
71
|
+
Requires-Dist: jaraco.packaging>=9.3; extra == "docs"
|
|
72
|
+
Requires-Dist: jaraco.test>=5.4; extra == "test"
|
|
73
|
+
Requires-Dist: jaraco.tidelift>=1.4; extra == "doc"
|
|
74
|
+
Requires-Dist: jaraco.tidelift>=1.4; extra == "docs"
|
|
75
|
+
Requires-Dist: jeepney>=0.4.2; sys_platform == "linux"
|
|
76
|
+
Requires-Dist: keyring>=20; extra == "test"
|
|
43
77
|
Requires-Dist: keyring==25.4.1
|
|
44
78
|
Requires-Dist: keyrings.alt==5.0.2
|
|
79
|
+
Requires-Dist: lxml-html-clean; extra == "html-clean"
|
|
45
80
|
Requires-Dist: lxml==5.3.0
|
|
81
|
+
Requires-Dist: mock; python_version < "3.0" and extra == "test"
|
|
46
82
|
Requires-Dist: more-itertools==10.5.0
|
|
47
|
-
Requires-Dist: multi_key_dict
|
|
83
|
+
Requires-Dist: multi_key_dict==2.0.3
|
|
48
84
|
Requires-Dist: ninja==1.11.1.1
|
|
85
|
+
Requires-Dist: packaging; extra == "test"
|
|
86
|
+
Requires-Dist: portend; extra == "test"
|
|
49
87
|
Requires-Dist: protobuf==5.28.2
|
|
50
88
|
Requires-Dist: psutil==6.0.0
|
|
51
|
-
Requires-Dist:
|
|
89
|
+
Requires-Dist: pycryptodome; extra == "test"
|
|
90
|
+
Requires-Dist: pycryptodomex; extra == "test"
|
|
91
|
+
Requires-Dist: pyfakefs; extra == "test"
|
|
52
92
|
Requires-Dist: pygit2==1.15.1
|
|
93
|
+
Requires-Dist: pygobject-stubs; extra == "type"
|
|
94
|
+
Requires-Dist: pytest!=8.1.*,>=6; extra == "test"
|
|
95
|
+
Requires-Dist: pytest>=4.5.0; extra == "test"
|
|
96
|
+
Requires-Dist: pytest>=6; extra == "dev"
|
|
97
|
+
Requires-Dist: pytest>=6; extra == "testing"
|
|
98
|
+
Requires-Dist: pytest-checkdocs>=2.4; extra == "check"
|
|
99
|
+
Requires-Dist: pytest-checkdocs>=2.4; extra == "test"
|
|
100
|
+
Requires-Dist: pytest-checkdocs>=2.4; extra == "testing"
|
|
101
|
+
Requires-Dist: pytest-cov; extra == "cover"
|
|
102
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
103
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
104
|
+
Requires-Dist: pytest-cov; extra == "testing"
|
|
105
|
+
Requires-Dist: pytest-cov>=2.7.1; extra == "test"
|
|
106
|
+
Requires-Dist: pytest-enabler>=2.2; extra == "enabler"
|
|
107
|
+
Requires-Dist: pytest-enabler>=2.2; extra == "test"
|
|
108
|
+
Requires-Dist: pytest-enabler>=2.2; extra == "testing"
|
|
109
|
+
Requires-Dist: pytest-mypy; extra == "test"
|
|
110
|
+
Requires-Dist: pytest-mypy; extra == "testing"
|
|
111
|
+
Requires-Dist: pytest-mypy; extra == "type"
|
|
112
|
+
Requires-Dist: pytest-perf>=0.9.2; extra == "test"
|
|
113
|
+
Requires-Dist: pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"
|
|
114
|
+
Requires-Dist: pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "test"
|
|
115
|
+
Requires-Dist: pytest-ruff>=0.2.1; extra == "testing"
|
|
116
|
+
Requires-Dist: pytest-runner>=5.1; extra == "test"
|
|
117
|
+
Requires-Dist: pytest-timeout; extra == "dev"
|
|
118
|
+
Requires-Dist: pytest-virtualenv>=1.7.0; extra == "test"
|
|
119
|
+
Requires-Dist: pytest-xdist; extra == "dev"
|
|
120
|
+
Requires-Dist: python-keyczar; python_version == "2.7" and extra == "test"
|
|
121
|
+
Requires-Dist: pywin32; sys_platform == "win32" and extra == "test"
|
|
122
|
+
Requires-Dist: pywin32-ctypes>=0.2.0; sys_platform == "win32"
|
|
123
|
+
Requires-Dist: requests; extra == "telegram"
|
|
53
124
|
Requires-Dist: requests==2.32.3
|
|
125
|
+
Requires-Dist: rst.linker>=1.9; extra == "doc"
|
|
126
|
+
Requires-Dist: rst.linker>=1.9; extra == "docs"
|
|
127
|
+
Requires-Dist: shtab; extra == "type"
|
|
128
|
+
Requires-Dist: shtab>=1.1.0; extra == "completion"
|
|
129
|
+
Requires-Dist: slack-sdk; extra == "slack"
|
|
130
|
+
Requires-Dist: sphinx>=3.5; extra == "doc"
|
|
131
|
+
Requires-Dist: sphinx>=3.5; extra == "docs"
|
|
132
|
+
Requires-Dist: sphinx-click; extra == "doc"
|
|
133
|
+
Requires-Dist: sphinx-lint; extra == "doc"
|
|
134
|
+
Requires-Dist: sphinx-lint; extra == "docs"
|
|
135
|
+
Requires-Dist: sphinx-rtd-theme; extra == "doc"
|
|
54
136
|
Requires-Dist: tqdm==4.66.5
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
137
|
+
Requires-Dist: types-pywin32; extra == "type"
|
|
138
|
+
Requires-Dist: typing-extensions>=3.6.4; python_version < "3.8"
|
|
139
|
+
Requires-Dist: urllib3<3,>=1.21.1
|
|
140
|
+
Requires-Dist: virtualenv>=15.0.3; extra == "test"
|
|
141
|
+
Requires-Dist: wmi; sys_platform == "win32" and extra == "test"
|
|
142
|
+
Requires-Dist: zipp>=3.20
|
|
57
143
|
Requires-Dist: zstandard==0.23.0
|
|
58
144
|
Provides-Extra: allure
|
|
59
145
|
Requires-Dist: allure-python-commons; extra == "allure"
|
|
@@ -23,7 +23,7 @@ jolt/tasks.py,sha256=fD-huf0h0xN5x3MjClaZMRDPuhjwHeF3SBnqXXlHjtM,115888
|
|
|
23
23
|
jolt/timer.py,sha256=PE-7vmsqZpF73e_cKSsrhd36-A7fJ9_XGYI_oBWJn5w,644
|
|
24
24
|
jolt/tools.py,sha256=A9mbyZkp4NH9Xkroz5KKhsvn8jIqnvnogVaI4VbgM20,80171
|
|
25
25
|
jolt/utils.py,sha256=bbp5mMhQRdq7sHDAxaqVVgD4QGGWXcwMCyIgG8LvyoA,19133
|
|
26
|
-
jolt/version.py,sha256=
|
|
26
|
+
jolt/version.py,sha256=l32M_D066-fZJ9087fsj8fKEiXRWzLAQFXJk_XiSNlE,24
|
|
27
27
|
jolt/version_utils.py,sha256=tNCGT6ZmSGFHW1aw2Hx1l19m-RR1UnTN6xJV1I54KRw,3900
|
|
28
28
|
jolt/xmldom.py,sha256=SbygiDUMYczzWGxXa60ZguWS6Nztg8gDAirdbtjT15I,5982
|
|
29
29
|
jolt/bin/fstree-darwin-x86_64,sha256=i4Ppbdr7CxsEhJzWpy3GMB5Gn5ikmskh41MyUwQS3-o,29549000
|
|
@@ -47,7 +47,7 @@ jolt/plugins/email.xslt,sha256=3vrrfnG-KH_cfJq6RDOXHKQxKd-6s28qy4znapGaciM,8513
|
|
|
47
47
|
jolt/plugins/environ.py,sha256=k382rvEKWj-nlibJcCUWcYtYheU8p9df9ZY0DAAkjDE,3561
|
|
48
48
|
jolt/plugins/gdb.py,sha256=gg-H_IQvRRPDZpk-djdIU7j3PO8CDINCSxWOemD2fA8,6288
|
|
49
49
|
jolt/plugins/gerrit.py,sha256=tc8NeIDAg3mZJINU5aZg1fs3YsaVxM_MvkHa149aAIs,768
|
|
50
|
-
jolt/plugins/git.py,sha256=
|
|
50
|
+
jolt/plugins/git.py,sha256=PJhOp0uWKMylJoNqHGm7NRqIAU20kv9fc2ZnfvSTqjo,21571
|
|
51
51
|
jolt/plugins/golang.py,sha256=vV4iRoJpWkyfrBa96s6jgU8Sz8GnGl-lzG_FSj5epzQ,2049
|
|
52
52
|
jolt/plugins/googletest.py,sha256=9aV_T21JY84YgeSiaV4ppZhVs1XFt19m3pPrJW2iGfI,18708
|
|
53
53
|
jolt/plugins/http.py,sha256=HwuABHR2tuWm_jBdQpCO3AMkjFdwOzUfEi26X-2v_y8,3816
|
|
@@ -62,7 +62,7 @@ jolt/plugins/podman.py,sha256=7xrPWaJvSzsBSsEUaCwBfVtMfzx5pLUrZB7pxf8hLzs,22487
|
|
|
62
62
|
jolt/plugins/python.py,sha256=kLx1Y3ezMH9AOW36DH_cNyDlvbIdTkyvPjwLYolnCEU,3073
|
|
63
63
|
jolt/plugins/report.py,sha256=EiPuZSoxEM-fXDsHBQuRTf1xtvN_gPBodMej3E9CGx0,2695
|
|
64
64
|
jolt/plugins/scheduler.py,sha256=SJdRb0taOF4zhKkPfc9zg8UyvDn7rJYtbyMPC93XXsk,24560
|
|
65
|
-
jolt/plugins/selfdeploy.py,sha256=
|
|
65
|
+
jolt/plugins/selfdeploy.py,sha256=Dm-iTsdx6CtKIEul8s50A59i8OXc42UPrSmfyTSh-7M,6656
|
|
66
66
|
jolt/plugins/strings.py,sha256=sHDroW0srlQI1aRwu_WANkmR35sUxPvZGO28CYo-ClY,1783
|
|
67
67
|
jolt/plugins/symlinks.py,sha256=u4lTcpkepf0_mr_RI85uiSkI_WAUGebAOsbH5WlAnzo,2399
|
|
68
68
|
jolt/plugins/telemetry.py,sha256=xHgJVbSVRaPy67kblL4wj86mDESlFS1z3NGDJ2uDXZ8,3572
|
|
@@ -85,8 +85,8 @@ jolt/templates/cxxexecutable.cmake.template,sha256=f0dg1VOFlamlF8fuHFTki5dsJ2ssS
|
|
|
85
85
|
jolt/templates/cxxlibrary.cmake.template,sha256=GMEG2G3QoY3E5fsNer52zOqgM221-abeCkV__mVbZ94,1750
|
|
86
86
|
jolt/templates/export.sh.template,sha256=PKkflGXFbq70EIsowqcnLvzbnEDnqh_WgC4E_JNT0VE,1937
|
|
87
87
|
jolt/templates/timeline.html.template,sha256=xdqvFBmhE8XRQaWgcIFBVbd__9HdRq6O-U0o276PyjU,1222
|
|
88
|
-
jolt-0.9.
|
|
89
|
-
jolt-0.9.
|
|
90
|
-
jolt-0.9.
|
|
91
|
-
jolt-0.9.
|
|
92
|
-
jolt-0.9.
|
|
88
|
+
jolt-0.9.404.dist-info/METADATA,sha256=2Yyxc9HR0RGreDcmQnVCAbF7W7sepIu-dLRsYnIAgDA,10284
|
|
89
|
+
jolt-0.9.404.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
90
|
+
jolt-0.9.404.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
|
|
91
|
+
jolt-0.9.404.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
|
|
92
|
+
jolt-0.9.404.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|