ScriptCollection 3.3.61__py3-none-any.whl → 3.3.62__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.
- ScriptCollection/ScriptCollectionCore.py +2 -2
- ScriptCollection/TasksForCommonProjectStructure.py +12 -12
- {ScriptCollection-3.3.61.dist-info → ScriptCollection-3.3.62.dist-info}/METADATA +1 -1
- {ScriptCollection-3.3.61.dist-info → ScriptCollection-3.3.62.dist-info}/RECORD +7 -7
- {ScriptCollection-3.3.61.dist-info → ScriptCollection-3.3.62.dist-info}/WHEEL +0 -0
- {ScriptCollection-3.3.61.dist-info → ScriptCollection-3.3.62.dist-info}/entry_points.txt +0 -0
- {ScriptCollection-3.3.61.dist-info → ScriptCollection-3.3.62.dist-info}/top_level.txt +0 -0
|
@@ -27,7 +27,7 @@ from .ProgramRunnerPopen import ProgramRunnerPopen
|
|
|
27
27
|
from .ProgramRunnerEpew import ProgramRunnerEpew, CustomEpewArgument
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
version = "3.3.
|
|
30
|
+
version = "3.3.62"
|
|
31
31
|
__version__ = version
|
|
32
32
|
|
|
33
33
|
|
|
@@ -204,7 +204,7 @@ class ScriptCollectionCore:
|
|
|
204
204
|
subfolder_argument = ""
|
|
205
205
|
else:
|
|
206
206
|
subfolder_argument = f" -- {subfolder}"
|
|
207
|
-
log_result = self.run_program("git", f'log --pretty=%
|
|
207
|
+
log_result = self.run_program("git", f'log --pretty=%aN{space_character}%aE%n%cN{space_character}%cE HEAD{subfolder_argument}',
|
|
208
208
|
repository_folder, verbosity=0)
|
|
209
209
|
plain_content: list[str] = list(set([line for line in log_result[1].split("\n") if len(line) > 0]))
|
|
210
210
|
result: list[tuple[str, str]] = []
|
|
@@ -1411,7 +1411,7 @@ class TasksForCommonProjectStructure:
|
|
|
1411
1411
|
additional_arguments_r: str = ""
|
|
1412
1412
|
additional_arguments_l: str = ""
|
|
1413
1413
|
additional_arguments_g: str = ""
|
|
1414
|
-
general_argument = f'--overwrite_verbosity={str(verbosity)} --overwrite_targetenvironmenttype={target_environmenttype}'
|
|
1414
|
+
general_argument = f' --overwrite_verbosity={str(verbosity)} --overwrite_targetenvironmenttype={target_environmenttype}'
|
|
1415
1415
|
|
|
1416
1416
|
c_additionalargumentsfile_argument = ""
|
|
1417
1417
|
|
|
@@ -1428,35 +1428,35 @@ class TasksForCommonProjectStructure:
|
|
|
1428
1428
|
config.read(additional_arguments_file)
|
|
1429
1429
|
section_name = f"{codeunit_name}_Configuration"
|
|
1430
1430
|
if config.has_option(section_name, "ArgumentsForCommonTasks"):
|
|
1431
|
-
additional_arguments_c = config.get(section_name, "ArgumentsForCommonTasks")
|
|
1431
|
+
additional_arguments_c = " "+config.get(section_name, "ArgumentsForCommonTasks")
|
|
1432
1432
|
if config.has_option(section_name, "ArgumentsForBuild"):
|
|
1433
|
-
additional_arguments_b = config.get(section_name, "ArgumentsForBuild")
|
|
1433
|
+
additional_arguments_b = " "+config.get(section_name, "ArgumentsForBuild")
|
|
1434
1434
|
if config.has_option(section_name, "ArgumentsForRunTestcases"):
|
|
1435
|
-
additional_arguments_r = config.get(section_name, "ArgumentsForRunTestcases")
|
|
1435
|
+
additional_arguments_r = " "+config.get(section_name, "ArgumentsForRunTestcases")
|
|
1436
1436
|
if config.has_option(section_name, "ArgumentsForLinting"):
|
|
1437
|
-
additional_arguments_l = config.get(section_name, "ArgumentsForLinting")
|
|
1437
|
+
additional_arguments_l = " "+config.get(section_name, "ArgumentsForLinting")
|
|
1438
1438
|
if config.has_option(section_name, "ArgumentsForGenerateReference"):
|
|
1439
|
-
additional_arguments_g = config.get(section_name, "ArgumentsForGenerateReference")
|
|
1440
|
-
c_additionalargumentsfile_argument = f'--overwrite_additionalargumentsfile="{additional_arguments_file}"'
|
|
1439
|
+
additional_arguments_g = " "+config.get(section_name, "ArgumentsForGenerateReference")
|
|
1440
|
+
c_additionalargumentsfile_argument = f' --overwrite_additionalargumentsfile="{additional_arguments_file}"'
|
|
1441
1441
|
|
|
1442
1442
|
GeneralUtilities.write_message_to_stdout('Run "CommonTasks.py"...')
|
|
1443
|
-
self.__sc.run_program("python", f"CommonTasks.py
|
|
1443
|
+
self.__sc.run_program("python", f"CommonTasks.py{additional_arguments_c}{general_argument}{c_additionalargumentsfile_argument}", other_folder, verbosity=verbosity)
|
|
1444
1444
|
self.verify_artifact_exists(codeunit_folder, dict[str, bool]({"Changelog": False, "License": True}))
|
|
1445
1445
|
|
|
1446
1446
|
GeneralUtilities.write_message_to_stdout('Run "Build.py"...')
|
|
1447
|
-
self.__sc.run_program("python", f"Build.py
|
|
1447
|
+
self.__sc.run_program("python", f"Build.py{additional_arguments_b}{general_argument}", build_folder, verbosity=verbosity)
|
|
1448
1448
|
self.verify_artifact_exists(codeunit_folder, dict[str, bool]({"BuildResult_.+": True, "BOM": False, "SourceCode": True}))
|
|
1449
1449
|
|
|
1450
1450
|
GeneralUtilities.write_message_to_stdout('Run "RunTestcases.py"...')
|
|
1451
|
-
self.__sc.run_program("python", f"RunTestcases.py
|
|
1451
|
+
self.__sc.run_program("python", f"RunTestcases.py{additional_arguments_r}{general_argument}", quality_folder, verbosity=verbosity)
|
|
1452
1452
|
self.verify_artifact_exists(codeunit_folder, dict[str, bool]({"TestCoverage": True, "TestCoverageReport": False}))
|
|
1453
1453
|
|
|
1454
1454
|
GeneralUtilities.write_message_to_stdout('Run "Linting.py"...')
|
|
1455
|
-
self.__sc.run_program("python", f"Linting.py
|
|
1455
|
+
self.__sc.run_program("python", f"Linting.py{additional_arguments_l}{general_argument}", quality_folder, verbosity=verbosity)
|
|
1456
1456
|
self.verify_artifact_exists(codeunit_folder, dict[str, bool]())
|
|
1457
1457
|
|
|
1458
1458
|
GeneralUtilities.write_message_to_stdout('Run "GenerateReference.py"...')
|
|
1459
|
-
self.__sc.run_program("python", f"GenerateReference.py
|
|
1459
|
+
self.__sc.run_program("python", f"GenerateReference.py{additional_arguments_g}{general_argument}", reference_folder, verbosity=verbosity)
|
|
1460
1460
|
self.verify_artifact_exists(codeunit_folder, dict[str, bool]({"Reference": True}))
|
|
1461
1461
|
|
|
1462
1462
|
artifactsinformation_file = os.path.join(artifacts_folder, f"{codeunit_name}.artifactsinformation.xml")
|
|
@@ -3,12 +3,12 @@ ScriptCollection/GeneralUtilities.py,sha256=Blo0Iq-G4zuUL5oUxBTeGFtQ23ndK7dpZPOj
|
|
|
3
3
|
ScriptCollection/ProgramRunnerBase.py,sha256=2kyOuoM3oFjBfLc9Q5t5RTz7Ya2CjUxFtB1rBBDmnjU,1937
|
|
4
4
|
ScriptCollection/ProgramRunnerEpew.py,sha256=ZiBZVMcsphmo49z2BwUwQYXo2uTKXPu33QW3IxCT46E,6273
|
|
5
5
|
ScriptCollection/ProgramRunnerPopen.py,sha256=HOs1QVnXiQtwXy1_xvH79bWBdd0i-2tUyyLloQBvMto,3023
|
|
6
|
-
ScriptCollection/ScriptCollectionCore.py,sha256=
|
|
7
|
-
ScriptCollection/TasksForCommonProjectStructure.py,sha256=
|
|
6
|
+
ScriptCollection/ScriptCollectionCore.py,sha256=xstEiL5332cW8bQPqwj3JdUqTuTrxDGi14JZNnkksdg,81235
|
|
7
|
+
ScriptCollection/TasksForCommonProjectStructure.py,sha256=WQKLcuRaCnbo7qFwog-WUBdmEMEsr30T0jZwgsj3i9Y,105834
|
|
8
8
|
ScriptCollection/UpdateCertificates.py,sha256=Go-JJK-YTi7aBB1phlLxypa8GHkmFHBEPB0_TT9G-bw,7918
|
|
9
9
|
ScriptCollection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
ScriptCollection-3.3.
|
|
11
|
-
ScriptCollection-3.3.
|
|
12
|
-
ScriptCollection-3.3.
|
|
13
|
-
ScriptCollection-3.3.
|
|
14
|
-
ScriptCollection-3.3.
|
|
10
|
+
ScriptCollection-3.3.62.dist-info/METADATA,sha256=YIXMhLIOhE0NrzNiH8pbGnQG16-DE9IHKRXhj9XYTqI,7878
|
|
11
|
+
ScriptCollection-3.3.62.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
12
|
+
ScriptCollection-3.3.62.dist-info/entry_points.txt,sha256=VIuxVCOpX38lSJUwRRENBNgcGKTIBxQyrCfbJVRHP8g,1968
|
|
13
|
+
ScriptCollection-3.3.62.dist-info/top_level.txt,sha256=hY2hOVH0V0Ce51WB76zKkIWTUNwMUdHo4XDkR2vYVwg,17
|
|
14
|
+
ScriptCollection-3.3.62.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|