opentf-toolkit-nightly 0.57.0.dev1026__py3-none-any.whl → 0.57.0.dev1039__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.
- opentf/commons/config.py +1 -1
- opentf/toolkit/core.py +1 -1
- {opentf_toolkit_nightly-0.57.0.dev1026.dist-info → opentf_toolkit_nightly-0.57.0.dev1039.dist-info}/METADATA +2 -2
- {opentf_toolkit_nightly-0.57.0.dev1026.dist-info → opentf_toolkit_nightly-0.57.0.dev1039.dist-info}/RECORD +7 -7
- {opentf_toolkit_nightly-0.57.0.dev1026.dist-info → opentf_toolkit_nightly-0.57.0.dev1039.dist-info}/LICENSE +0 -0
- {opentf_toolkit_nightly-0.57.0.dev1026.dist-info → opentf_toolkit_nightly-0.57.0.dev1039.dist-info}/WHEEL +0 -0
- {opentf_toolkit_nightly-0.57.0.dev1026.dist-info → opentf_toolkit_nightly-0.57.0.dev1039.dist-info}/top_level.txt +0 -0
opentf/commons/config.py
CHANGED
|
@@ -111,7 +111,7 @@ def configure_logging(name: str, debug_level: str) -> None:
|
|
|
111
111
|
'handlers': {
|
|
112
112
|
'wsgi': {
|
|
113
113
|
'class': 'logging.StreamHandler',
|
|
114
|
-
'stream': 'ext://flask.logging.wsgi_errors_stream',
|
|
114
|
+
'stream': f'ext://{os.environ.get("OPENTF_LOGGING_REDIRECT", "flask.logging.wsgi_errors_stream")}',
|
|
115
115
|
'formatter': 'default',
|
|
116
116
|
},
|
|
117
117
|
},
|
opentf/toolkit/core.py
CHANGED
|
@@ -345,7 +345,7 @@ def touch_file(path: str) -> str:
|
|
|
345
345
|
def create_file(path: str, content: str, target: str = 'auto') -> str:
|
|
346
346
|
"""Create file."""
|
|
347
347
|
marker = make_uuid()
|
|
348
|
-
if
|
|
348
|
+
if runner_on_windows() if target == 'auto' else (target == 'windows'):
|
|
349
349
|
encoded = str(base64.b64encode(bytes(content, 'utf8')), 'utf8')
|
|
350
350
|
what = f'@echo {encoded} > {marker} & @certutil -f -decode {marker} {path} >nul & @del {marker}'
|
|
351
351
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opentf-toolkit-nightly
|
|
3
|
-
Version: 0.57.0.
|
|
3
|
+
Version: 0.57.0.dev1039
|
|
4
4
|
Summary: OpenTestFactory Orchestrator Toolkit
|
|
5
5
|
Home-page: https://gitlab.com/henixdevelopment/open-source/opentestfactory/python-toolkit
|
|
6
6
|
Author: Martin Lafaix
|
|
@@ -17,7 +17,7 @@ Requires-Python: >= 3.8.0
|
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
19
|
Requires-Dist: requests >=2.31
|
|
20
|
-
Requires-Dist: PyJWT[crypto]
|
|
20
|
+
Requires-Dist: PyJWT[crypto] <2.9,>=2.7
|
|
21
21
|
Requires-Dist: PyYAML >=6
|
|
22
22
|
Requires-Dist: Flask >=2.2.3
|
|
23
23
|
Requires-Dist: jsonschema >=4.17
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
opentf/commons/__init__.py,sha256=KRY8ShQw_0ZZ0oEOiKi4-xnWofE_QsFjEe1T8wUxJ-w,21952
|
|
2
2
|
opentf/commons/auth.py,sha256=bM2Z3kxm2Wku1lKXaRAIg37LHvXWAXIZIqjplDfN2P8,15899
|
|
3
|
-
opentf/commons/config.py,sha256=
|
|
3
|
+
opentf/commons/config.py,sha256=dyus4K5Zdmcftc3Y9Z1YRkzA1KwiRLHoeAlg2_A49QM,7876
|
|
4
4
|
opentf/commons/datasources.py,sha256=4ye-TMtaE88O8GVcWx-FtKXOC8aIZLteR6wfIr7Do8U,25232
|
|
5
5
|
opentf/commons/expressions.py,sha256=jM_YKXVOFhvOE2aE2IuacuvxhIsOYTFs2oQkpcbWR6g,19645
|
|
6
6
|
opentf/commons/pubsub.py,sha256=7khxAHVZiwJRcwIBJ6MPR-f3xY9144-2eNLROwq5F-4,5894
|
|
@@ -48,9 +48,9 @@ opentf/scripts/launch_java_service.sh,sha256=S0jAaCuv2sZy0Gf2NGBuPX-eD531rcM-b0f
|
|
|
48
48
|
opentf/scripts/startup.py,sha256=Da2zo93pBWbdRmj-wgekgLcF94rpNc3ZkbvR8R0w8XY,21279
|
|
49
49
|
opentf/toolkit/__init__.py,sha256=FLjU1HzD3M4xyLV3uUrec4RdVDyTcpvMGRnZOZtfXfc,22037
|
|
50
50
|
opentf/toolkit/channels.py,sha256=6xcVKHUK2FdyVKIQmPQbakngfVuQDzCcD_lInOdKpro,17171
|
|
51
|
-
opentf/toolkit/core.py,sha256=
|
|
52
|
-
opentf_toolkit_nightly-0.57.0.
|
|
53
|
-
opentf_toolkit_nightly-0.57.0.
|
|
54
|
-
opentf_toolkit_nightly-0.57.0.
|
|
55
|
-
opentf_toolkit_nightly-0.57.0.
|
|
56
|
-
opentf_toolkit_nightly-0.57.0.
|
|
51
|
+
opentf/toolkit/core.py,sha256=Uc5cRwyi6bs7WVmgvQLTvEa6bXjZ3KfCKWHSdIeUy98,9621
|
|
52
|
+
opentf_toolkit_nightly-0.57.0.dev1039.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
53
|
+
opentf_toolkit_nightly-0.57.0.dev1039.dist-info/METADATA,sha256=kY91sP_A0MZIlGFlPHrf4FrfF86p5VWvE81flxjUH90,1951
|
|
54
|
+
opentf_toolkit_nightly-0.57.0.dev1039.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
55
|
+
opentf_toolkit_nightly-0.57.0.dev1039.dist-info/top_level.txt,sha256=_gPuE6GTT6UNXy1DjtmQSfCcZb_qYA2vWmjg7a30AGk,7
|
|
56
|
+
opentf_toolkit_nightly-0.57.0.dev1039.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|