argus-alm 0.14.2__tar.gz → 0.15.3__tar.gz

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.
Files changed (386) hide show
  1. argus_alm-0.15.3/.dockerignore +141 -0
  2. argus_alm-0.15.3/.envrc +16 -0
  3. argus_alm-0.15.3/.eslintrc.js +47 -0
  4. argus_alm-0.15.3/.github/workflows/lint.yml +35 -0
  5. argus_alm-0.15.3/.github/workflows/release.yml +63 -0
  6. argus_alm-0.15.3/.github/workflows/test.yml +44 -0
  7. argus_alm-0.15.3/.gitignore +139 -0
  8. argus_alm-0.15.3/.pre-commit-config.yaml +34 -0
  9. argus_alm-0.15.3/.prettierrc.js +7 -0
  10. argus_alm-0.15.3/Dockerfile +36 -0
  11. argus_alm-0.15.3/MANIFEST.in +2 -0
  12. {argus_alm-0.14.2 → argus_alm-0.15.3}/PKG-INFO +43 -19
  13. {argus_alm-0.14.2 → argus_alm-0.15.3}/README.md +3 -4
  14. argus_alm-0.15.3/argus/_version.py +21 -0
  15. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/base.py +1 -3
  16. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/driver_matrix_tests/cli.py +17 -8
  17. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/generic/cli.py +4 -2
  18. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/generic/client.py +1 -0
  19. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/generic_result.py +53 -9
  20. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/sct/client.py +1 -3
  21. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/sirenada/client.py +4 -1
  22. argus_alm-0.15.3/argus/common/__init__.py +0 -0
  23. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/common/sct_types.py +3 -0
  24. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/common/sirenada_types.py +1 -1
  25. argus_alm-0.15.3/argus.yaml +12 -0
  26. argus_alm-0.15.3/argusAI/README.md +5 -0
  27. argus_alm-0.15.3/argusAI/deployment/argusai_event_similarity_processor.service +19 -0
  28. argus_alm-0.15.3/argusAI/event_similarity_processor.py +322 -0
  29. argus_alm-0.15.3/argusAI/logs/.gitignore +1 -0
  30. argus_alm-0.15.3/argusAI/pyproject.toml +10 -0
  31. argus_alm-0.15.3/argusAI/utils/__init__.py +0 -0
  32. argus_alm-0.15.3/argusAI/utils/event_message_sanitizer.py +215 -0
  33. argus_alm-0.15.3/argusAI/utils/scylla_connection.py +99 -0
  34. argus_alm-0.15.3/argusAI/uv.lock +1412 -0
  35. argus_alm-0.15.3/argus_alm.egg-info/PKG-INFO +153 -0
  36. argus_alm-0.15.3/argus_alm.egg-info/SOURCES.txt +383 -0
  37. argus_alm-0.15.3/argus_alm.egg-info/dependency_links.txt +1 -0
  38. argus_alm-0.15.3/argus_alm.egg-info/entry_points.txt +3 -0
  39. argus_alm-0.15.3/argus_alm.egg-info/requires.txt +35 -0
  40. argus_alm-0.15.3/argus_alm.egg-info/top_level.txt +1 -0
  41. argus_alm-0.15.3/argus_backend.py +43 -0
  42. argus_alm-0.15.3/argus_web.example.yaml +59 -0
  43. argus_alm-0.15.3/commitlint.config.js +21 -0
  44. argus_alm-0.15.3/dev-db/.gitignore +2 -0
  45. argus_alm-0.15.3/dev-db/alpha-config/cassandra-rackdc.properties +12 -0
  46. argus_alm-0.15.3/dev-db/alpha-config/machine_image_configured +0 -0
  47. argus_alm-0.15.3/dev-db/alpha-config/scylla.yaml +18 -0
  48. argus_alm-0.15.3/dev-db/alpha-data/.gitignore +2 -0
  49. argus_alm-0.15.3/dev-db/docker-compose.yaml +19 -0
  50. argus_alm-0.15.3/dev-db/export_data.py +79 -0
  51. argus_alm-0.15.3/dev-db/import_data.py +92 -0
  52. argus_alm-0.15.3/docker/config/nginx-docker.conf +45 -0
  53. argus_alm-0.15.3/docker/config/supervisord.conf +36 -0
  54. argus_alm-0.15.3/docker-entrypoint.sh +2 -0
  55. argus_alm-0.15.3/docs/api_usage.md +120 -0
  56. argus_alm-0.15.3/docs/argus_status_page.md +110 -0
  57. argus_alm-0.15.3/docs/argus_status_page_diagram.jpg +0 -0
  58. argus_alm-0.15.3/docs/config/argus.nginx.conf +24 -0
  59. argus_alm-0.15.3/docs/config/argus.service +14 -0
  60. argus_alm-0.15.3/docs/dev-setup.md +147 -0
  61. argus_alm-0.15.3/docs/generic_results.md +106 -0
  62. argus_alm-0.15.3/docs/pypi-guide.md +23 -0
  63. argus_alm-0.15.3/frontend/AdminPanel/AdminPanel.svelte +80 -0
  64. argus_alm-0.15.3/frontend/AdminPanel/AdminPanelWelcome.svelte +5 -0
  65. argus_alm-0.15.3/frontend/AdminPanel/BatchTestMover.svelte +72 -0
  66. argus_alm-0.15.3/frontend/AdminPanel/GroupCreator.svelte +77 -0
  67. argus_alm-0.15.3/frontend/AdminPanel/ReleaseCreator.svelte +73 -0
  68. argus_alm-0.15.3/frontend/AdminPanel/ReleaseDeletionConfirmationPopup.svelte +64 -0
  69. argus_alm-0.15.3/frontend/AdminPanel/ReleaseEditor.svelte +103 -0
  70. argus_alm-0.15.3/frontend/AdminPanel/ReleaseManager.svelte +577 -0
  71. argus_alm-0.15.3/frontend/AdminPanel/ReleaseManagerGroup.svelte +226 -0
  72. argus_alm-0.15.3/frontend/AdminPanel/ReleaseManagerTest.svelte +224 -0
  73. argus_alm-0.15.3/frontend/AdminPanel/TestCreator.svelte +111 -0
  74. argus_alm-0.15.3/frontend/AdminPanel/UserManager.svelte +363 -0
  75. argus_alm-0.15.3/frontend/AdminPanel/ViewListItem.svelte +81 -0
  76. argus_alm-0.15.3/frontend/AdminPanel/ViewSelectItem.svelte +54 -0
  77. argus_alm-0.15.3/frontend/AdminPanel/ViewWidget.svelte +111 -0
  78. argus_alm-0.15.3/frontend/AdminPanel/ViewsManager.svelte +472 -0
  79. argus_alm-0.15.3/frontend/Alert.js +10 -0
  80. argus_alm-0.15.3/frontend/Alerts/AlertMessage.svelte +65 -0
  81. argus_alm-0.15.3/frontend/Alerts/AlertWidget.svelte +107 -0
  82. argus_alm-0.15.3/frontend/Common/ApiUtils.js +36 -0
  83. argus_alm-0.15.3/frontend/Common/ArgusNotification.ts +98 -0
  84. argus_alm-0.15.3/frontend/Common/AssigneeSelector.svelte +51 -0
  85. argus_alm-0.15.3/frontend/Common/AssigneeUtils.js +10 -0
  86. argus_alm-0.15.3/frontend/Common/DateUtils.js +45 -0
  87. argus_alm-0.15.3/frontend/Common/DriverMatrixTypes.ts +34 -0
  88. argus_alm-0.15.3/frontend/Common/IssueDestinations.js +36 -0
  89. argus_alm-0.15.3/frontend/Common/JenkinsSettingsHelp.js +14 -0
  90. argus_alm-0.15.3/frontend/Common/ModalWindow.svelte +58 -0
  91. argus_alm-0.15.3/frontend/Common/PluginDispatch.js +17 -0
  92. argus_alm-0.15.3/frontend/Common/PluginNames.js +5 -0
  93. argus_alm-0.15.3/frontend/Common/RunUtils.js +76 -0
  94. argus_alm-0.15.3/frontend/Common/SelectUtils.js +3 -0
  95. argus_alm-0.15.3/frontend/Common/StateManagement.js +18 -0
  96. argus_alm-0.15.3/frontend/Common/TestStatus.js +171 -0
  97. argus_alm-0.15.3/frontend/Common/TextUtils.js +44 -0
  98. argus_alm-0.15.3/frontend/Common/UserTypes.ts +13 -0
  99. argus_alm-0.15.3/frontend/Common/UserUtils.js +14 -0
  100. argus_alm-0.15.3/frontend/Common/ViewTypes.js +162 -0
  101. argus_alm-0.15.3/frontend/Debug/FlashDebugComponent.svelte +23 -0
  102. argus_alm-0.15.3/frontend/Discussion/Comment.svelte +200 -0
  103. argus_alm-0.15.3/frontend/Discussion/CommentEditor.svelte +367 -0
  104. argus_alm-0.15.3/frontend/Discussion/MarkedMentionExtension.js +29 -0
  105. argus_alm-0.15.3/frontend/Discussion/MentionSelector.svelte +80 -0
  106. argus_alm-0.15.3/frontend/Discussion/UserProfile.svelte +12 -0
  107. argus_alm-0.15.3/frontend/Github/GithubIssue.svelte +306 -0
  108. argus_alm-0.15.3/frontend/Github/GithubIssues.svelte +337 -0
  109. argus_alm-0.15.3/frontend/Github/GithubIssuesCopyModal.svelte +109 -0
  110. argus_alm-0.15.3/frontend/Profile/JobsList.svelte +193 -0
  111. argus_alm-0.15.3/frontend/Profile/Login.svelte +85 -0
  112. argus_alm-0.15.3/frontend/Profile/Notification.svelte +94 -0
  113. argus_alm-0.15.3/frontend/Profile/NotificationCommentWrapper.svelte +134 -0
  114. argus_alm-0.15.3/frontend/Profile/NotificationCounter.svelte +40 -0
  115. argus_alm-0.15.3/frontend/Profile/NotificationSender.svelte +25 -0
  116. argus_alm-0.15.3/frontend/Profile/NotificationTestRunWrapper.svelte +7 -0
  117. argus_alm-0.15.3/frontend/Profile/NotificationsReader.svelte +131 -0
  118. argus_alm-0.15.3/frontend/Profile/ProfileJob.svelte +104 -0
  119. argus_alm-0.15.3/frontend/Profile/ProfileJobs.svelte +116 -0
  120. argus_alm-0.15.3/frontend/Profile/ProfileJobsTab.svelte +253 -0
  121. argus_alm-0.15.3/frontend/Profile/ProfileSchedules.svelte +239 -0
  122. argus_alm-0.15.3/frontend/Profile/User.svelte +61 -0
  123. argus_alm-0.15.3/frontend/Profile/UserSelection.svelte +22 -0
  124. argus_alm-0.15.3/frontend/Profile/ViewUserResolver.svelte +14 -0
  125. argus_alm-0.15.3/frontend/ReleaseDashboard/AssigneeFilter.svelte +31 -0
  126. argus_alm-0.15.3/frontend/ReleaseDashboard/FlatViewHelper.svelte +5 -0
  127. argus_alm-0.15.3/frontend/ReleaseDashboard/GroupedViewHelper.svelte +3 -0
  128. argus_alm-0.15.3/frontend/ReleaseDashboard/ReleaseActivity.svelte +136 -0
  129. argus_alm-0.15.3/frontend/ReleaseDashboard/ReleaseDashboard.svelte +133 -0
  130. argus_alm-0.15.3/frontend/ReleaseDashboard/ReleaseGithubIssues.svelte +85 -0
  131. argus_alm-0.15.3/frontend/ReleaseDashboard/TestDashboard.svelte +478 -0
  132. argus_alm-0.15.3/frontend/ReleaseDashboard/TestDashboardFlatView.svelte +37 -0
  133. argus_alm-0.15.3/frontend/ReleaseDashboard/TestDashboardGroup.svelte +99 -0
  134. argus_alm-0.15.3/frontend/ReleaseDashboard/TestDashboardTest.svelte +121 -0
  135. argus_alm-0.15.3/frontend/ReleaseDashboard/TestPopoutSelector.svelte +203 -0
  136. argus_alm-0.15.3/frontend/ReleaseDashboard/TestWithIssuesCard.svelte +17 -0
  137. argus_alm-0.15.3/frontend/ReleasePlanner/CommentTableRow.svelte +100 -0
  138. argus_alm-0.15.3/frontend/ReleasePlanner/DutyPlanner.svelte +357 -0
  139. argus_alm-0.15.3/frontend/ReleasePlanner/EntityReplacer.svelte +68 -0
  140. argus_alm-0.15.3/frontend/ReleasePlanner/ReleasePlan.svelte +122 -0
  141. argus_alm-0.15.3/frontend/ReleasePlanner/ReleasePlanCopyForm.svelte +272 -0
  142. argus_alm-0.15.3/frontend/ReleasePlanner/ReleasePlanCreator.svelte +606 -0
  143. argus_alm-0.15.3/frontend/ReleasePlanner/ReleasePlanEditor.svelte +373 -0
  144. argus_alm-0.15.3/frontend/ReleasePlanner/ReleasePlanTable.svelte +277 -0
  145. argus_alm-0.15.3/frontend/ReleasePlanner/ReleasePlanner.svelte +264 -0
  146. argus_alm-0.15.3/frontend/ReleasePlanner/ReleasePlannerGridView.svelte +397 -0
  147. argus_alm-0.15.3/frontend/ReleasePlanner/ReleaseScheduler.svelte +174 -0
  148. argus_alm-0.15.3/frontend/ReleasePlanner/Schedule.svelte +357 -0
  149. argus_alm-0.15.3/frontend/ReleasePlanner/ScheduleTable.svelte +198 -0
  150. argus_alm-0.15.3/frontend/ReleasePlanner/SearchBar.svelte +108 -0
  151. argus_alm-0.15.3/frontend/Stats/ChartStats.svelte +43 -0
  152. argus_alm-0.15.3/frontend/Stats/NumberStats.svelte +184 -0
  153. argus_alm-0.15.3/frontend/Stats/ProgressBarStats.svelte +40 -0
  154. argus_alm-0.15.3/frontend/Stats/ReleaseStats.svelte +39 -0
  155. argus_alm-0.15.3/frontend/Stats/StatsFetcher.svelte +35 -0
  156. argus_alm-0.15.3/frontend/Stores/AlertStore.js +15 -0
  157. argus_alm-0.15.3/frontend/Stores/AssigneeSubscriber.js +86 -0
  158. argus_alm-0.15.3/frontend/Stores/SingleTestRunSubscriber.js +39 -0
  159. argus_alm-0.15.3/frontend/Stores/TestRunsSubscriber.js +71 -0
  160. argus_alm-0.15.3/frontend/Stores/UserlistSubscriber.js +35 -0
  161. argus_alm-0.15.3/frontend/Stores/WorkspaceStore.js +16 -0
  162. argus_alm-0.15.3/frontend/Teams/TeamCreateForm.svelte +93 -0
  163. argus_alm-0.15.3/frontend/Teams/TeamDetail.svelte +253 -0
  164. argus_alm-0.15.3/frontend/Teams/TeamList.svelte +66 -0
  165. argus_alm-0.15.3/frontend/Teams/TeamManager.svelte +78 -0
  166. argus_alm-0.15.3/frontend/Teams/TeamMember.svelte +156 -0
  167. argus_alm-0.15.3/frontend/Teams/TeamShort.svelte +102 -0
  168. argus_alm-0.15.3/frontend/Teams/TeamUtils.ts +117 -0
  169. argus_alm-0.15.3/frontend/TestRun/ActivityTab.svelte +87 -0
  170. argus_alm-0.15.3/frontend/TestRun/ArtifactRow.svelte +42 -0
  171. argus_alm-0.15.3/frontend/TestRun/ArtifactTab.svelte +110 -0
  172. argus_alm-0.15.3/frontend/TestRun/Components/Cell.svelte +56 -0
  173. argus_alm-0.15.3/frontend/TestRun/Components/Filters.svelte +144 -0
  174. argus_alm-0.15.3/frontend/TestRun/Components/GraphFilters.svelte +106 -0
  175. argus_alm-0.15.3/frontend/TestRun/Components/ResultTable.svelte +358 -0
  176. argus_alm-0.15.3/frontend/TestRun/Components/ScreenshotModal.svelte +70 -0
  177. argus_alm-0.15.3/frontend/TestRun/DriverMatrixBreakdown.svelte +205 -0
  178. argus_alm-0.15.3/frontend/TestRun/DriverMatrixRunInfo.svelte +140 -0
  179. argus_alm-0.15.3/frontend/TestRun/DriverMatrixTestCollection.svelte +66 -0
  180. argus_alm-0.15.3/frontend/TestRun/DriverMatrixTestRun.svelte +288 -0
  181. argus_alm-0.15.3/frontend/TestRun/DriverMatrixTestSuites.svelte +81 -0
  182. argus_alm-0.15.3/frontend/TestRun/EventsTab.svelte +271 -0
  183. argus_alm-0.15.3/frontend/TestRun/Generic/GenericTestRun.svelte +262 -0
  184. argus_alm-0.15.3/frontend/TestRun/Generic/GenericTestRunInfo.svelte +90 -0
  185. argus_alm-0.15.3/frontend/TestRun/HeartbeatIndicator.svelte +44 -0
  186. argus_alm-0.15.3/frontend/TestRun/IssueTab.svelte +22 -0
  187. argus_alm-0.15.3/frontend/TestRun/IssueTemplate.svelte +219 -0
  188. argus_alm-0.15.3/frontend/TestRun/Jenkins/Build.js +39 -0
  189. argus_alm-0.15.3/frontend/TestRun/Jenkins/BuildConfirmationDialog.svelte +17 -0
  190. argus_alm-0.15.3/frontend/TestRun/Jenkins/BuildStartPlaceholder.svelte +10 -0
  191. argus_alm-0.15.3/frontend/TestRun/Jenkins/BuildSuccessPlaceholder.svelte +126 -0
  192. argus_alm-0.15.3/frontend/TestRun/Jenkins/CheckParam.svelte +9 -0
  193. argus_alm-0.15.3/frontend/TestRun/Jenkins/CloneCreatePlaceholder.svelte +17 -0
  194. argus_alm-0.15.3/frontend/TestRun/Jenkins/CloneSuccess.svelte +30 -0
  195. argus_alm-0.15.3/frontend/TestRun/Jenkins/CloneTargetSelector.svelte +290 -0
  196. argus_alm-0.15.3/frontend/TestRun/Jenkins/DummyCheckParam.svelte +13 -0
  197. argus_alm-0.15.3/frontend/TestRun/Jenkins/DummySelectParam.svelte +13 -0
  198. argus_alm-0.15.3/frontend/TestRun/Jenkins/JenkinsBuildModal.svelte +241 -0
  199. argus_alm-0.15.3/frontend/TestRun/Jenkins/JenkinsCloneModal.svelte +363 -0
  200. argus_alm-0.15.3/frontend/TestRun/Jenkins/LoadTargetsPlaceholder.svelte +10 -0
  201. argus_alm-0.15.3/frontend/TestRun/Jenkins/ModalError.svelte +12 -0
  202. argus_alm-0.15.3/frontend/TestRun/Jenkins/ParamFetchPlaceholder.svelte +10 -0
  203. argus_alm-0.15.3/frontend/TestRun/Jenkins/ParameterEditor.svelte +91 -0
  204. argus_alm-0.15.3/frontend/TestRun/Jenkins/SCTParameterWizard.svelte +590 -0
  205. argus_alm-0.15.3/frontend/TestRun/Jenkins/SelectParam.svelte +18 -0
  206. argus_alm-0.15.3/frontend/TestRun/Jenkins/StringParam.svelte +7 -0
  207. argus_alm-0.15.3/frontend/TestRun/Jenkins/TextParam.svelte +7 -0
  208. argus_alm-0.15.3/frontend/TestRun/Jenkins/WizardUnavailable.svelte +3 -0
  209. argus_alm-0.15.3/frontend/TestRun/NemesisData.svelte +121 -0
  210. argus_alm-0.15.3/frontend/TestRun/NemesisReason.svelte +22 -0
  211. argus_alm-0.15.3/frontend/TestRun/NemesisTable.svelte +240 -0
  212. argus_alm-0.15.3/frontend/TestRun/PackagesInfo.svelte +194 -0
  213. argus_alm-0.15.3/frontend/TestRun/RawEvent.svelte +13 -0
  214. argus_alm-0.15.3/frontend/TestRun/ResourcesInfo.svelte +395 -0
  215. argus_alm-0.15.3/frontend/TestRun/ResultsGraph.svelte +465 -0
  216. argus_alm-0.15.3/frontend/TestRun/ResultsGraphs.svelte +360 -0
  217. argus_alm-0.15.3/frontend/TestRun/ResultsTab.svelte +161 -0
  218. argus_alm-0.15.3/frontend/TestRun/RunAssigneeSelector.svelte +160 -0
  219. argus_alm-0.15.3/frontend/TestRun/RunInvestigationStatusButton.svelte +90 -0
  220. argus_alm-0.15.3/frontend/TestRun/RunStatusButton.svelte +86 -0
  221. argus_alm-0.15.3/frontend/TestRun/SCTSubTests/Gemini/GeminiTabBodyComponent.svelte +59 -0
  222. argus_alm-0.15.3/frontend/TestRun/SCTSubTests/Gemini/GeminiTabComponent.svelte +16 -0
  223. argus_alm-0.15.3/frontend/TestRun/SCTSubTests/Performance/PerformanceTabBodyComponent.svelte +154 -0
  224. argus_alm-0.15.3/frontend/TestRun/SCTSubTests/Performance/PerformanceTabComponent.svelte +16 -0
  225. argus_alm-0.15.3/frontend/TestRun/SCTSubTests/Subtest.js +19 -0
  226. argus_alm-0.15.3/frontend/TestRun/Screenshots.svelte +51 -0
  227. argus_alm-0.15.3/frontend/TestRun/Sirenada/SirenadaIssueTemplate.svelte +162 -0
  228. argus_alm-0.15.3/frontend/TestRun/Sirenada/SirenadaRunInfo.svelte +109 -0
  229. argus_alm-0.15.3/frontend/TestRun/Sirenada/SirenadaTestBreakdown.svelte +226 -0
  230. argus_alm-0.15.3/frontend/TestRun/Sirenada/SirenadaTestRun.svelte +290 -0
  231. argus_alm-0.15.3/frontend/TestRun/StructuredEvent.svelte +269 -0
  232. argus_alm-0.15.3/frontend/TestRun/TestRun.svelte +524 -0
  233. argus_alm-0.15.3/frontend/TestRun/TestRunComments.svelte +245 -0
  234. argus_alm-0.15.3/frontend/TestRun/TestRunInfo.svelte +335 -0
  235. argus_alm-0.15.3/frontend/TestRun/jUnitChart.svelte +57 -0
  236. argus_alm-0.15.3/frontend/TestRun/jUnitResults.svelte +91 -0
  237. argus_alm-0.15.3/frontend/Views/ViewDashboard.svelte +148 -0
  238. argus_alm-0.15.3/frontend/Views/ViewSelect.svelte +46 -0
  239. argus_alm-0.15.3/frontend/Views/WidgetSettingTypes/CheckValue.svelte +21 -0
  240. argus_alm-0.15.3/frontend/Views/WidgetSettingTypes/IntegerValue.svelte +21 -0
  241. argus_alm-0.15.3/frontend/Views/WidgetSettingTypes/MultiSelectValue.svelte +27 -0
  242. argus_alm-0.15.3/frontend/Views/WidgetSettingTypes/MultiStringValue.svelte +46 -0
  243. argus_alm-0.15.3/frontend/Views/WidgetSettingTypes/StringValue.svelte +21 -0
  244. argus_alm-0.15.3/frontend/Views/Widgets/GraphsWidget/GraphsWidget.svelte +264 -0
  245. argus_alm-0.15.3/frontend/Views/Widgets/SummaryWidget/RunIssues.svelte +57 -0
  246. argus_alm-0.15.3/frontend/Views/Widgets/SummaryWidget/SummaryWidget.svelte +419 -0
  247. argus_alm-0.15.3/frontend/Views/Widgets/ViewGithubIssues.svelte +43 -0
  248. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/AssigneeCell.svelte +34 -0
  249. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/Filters.svelte +43 -0
  250. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/Interfaces.ts +46 -0
  251. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/InvestigationStatusCell.svelte +30 -0
  252. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/IssuesCell.svelte +51 -0
  253. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/NemesisTable.svelte +52 -0
  254. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/PaginatedTable.svelte +200 -0
  255. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/StackTracePreview.svelte +53 -0
  256. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/StatusBadge.svelte +16 -0
  257. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/StatusCell.svelte +23 -0
  258. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats/TestRunTable.svelte +147 -0
  259. argus_alm-0.15.3/frontend/Views/Widgets/ViewGraphedStats.svelte +567 -0
  260. argus_alm-0.15.3/frontend/Views/Widgets/ViewHighlights/ActionItem.svelte +156 -0
  261. argus_alm-0.15.3/frontend/Views/Widgets/ViewHighlights/Comment.svelte +77 -0
  262. argus_alm-0.15.3/frontend/Views/Widgets/ViewHighlights/HighlightItem.svelte +141 -0
  263. argus_alm-0.15.3/frontend/Views/Widgets/ViewHighlights/ViewHighlights.svelte +439 -0
  264. argus_alm-0.15.3/frontend/Views/Widgets/ViewNemesisStats.svelte +739 -0
  265. argus_alm-0.15.3/frontend/Views/Widgets/ViewReleaseStats.svelte +18 -0
  266. argus_alm-0.15.3/frontend/Views/Widgets/ViewTestDashboard.svelte +35 -0
  267. argus_alm-0.15.3/frontend/Views/Widgets/ViewUnsupportedPlaceholder.svelte +3 -0
  268. argus_alm-0.15.3/frontend/WorkArea/AssigneeList.svelte +49 -0
  269. argus_alm-0.15.3/frontend/WorkArea/JobConfigureModal.svelte +221 -0
  270. argus_alm-0.15.3/frontend/WorkArea/RunGroup.svelte +178 -0
  271. argus_alm-0.15.3/frontend/WorkArea/RunRelease.svelte +188 -0
  272. argus_alm-0.15.3/frontend/WorkArea/Test.svelte +145 -0
  273. argus_alm-0.15.3/frontend/WorkArea/TestRunDispatcher.svelte +11 -0
  274. argus_alm-0.15.3/frontend/WorkArea/TestRuns.svelte +493 -0
  275. argus_alm-0.15.3/frontend/WorkArea/TestRunsMessage.svelte +10 -0
  276. argus_alm-0.15.3/frontend/WorkArea/TestRunsPanel.svelte +131 -0
  277. argus_alm-0.15.3/frontend/WorkArea/TestRunsSelector.svelte +197 -0
  278. argus_alm-0.15.3/frontend/WorkArea/UnknownTest.svelte +28 -0
  279. argus_alm-0.15.3/frontend/WorkArea/WorkArea.svelte +119 -0
  280. argus_alm-0.15.3/frontend/admin-panel.js +10 -0
  281. argus_alm-0.15.3/frontend/argus.css +176 -0
  282. argus_alm-0.15.3/frontend/argus.js +5 -0
  283. argus_alm-0.15.3/frontend/duty-planner.js +8 -0
  284. argus_alm-0.15.3/frontend/flashDebug.js +8 -0
  285. argus_alm-0.15.3/frontend/font-awesome.css +1 -0
  286. argus_alm-0.15.3/frontend/font-awesome.js +5 -0
  287. argus_alm-0.15.3/frontend/fonts/NotoSans-Bold.ttf +0 -0
  288. argus_alm-0.15.3/frontend/fonts/NotoSans-BoldItalic.ttf +0 -0
  289. argus_alm-0.15.3/frontend/fonts/NotoSans-Italic.ttf +0 -0
  290. argus_alm-0.15.3/frontend/fonts/NotoSans-Regular.ttf +0 -0
  291. argus_alm-0.15.3/frontend/fonts/OFL.txt +93 -0
  292. argus_alm-0.15.3/frontend/fonts/noto.css +23 -0
  293. argus_alm-0.15.3/frontend/login.js +12 -0
  294. argus_alm-0.15.3/frontend/markdownOptions.js +13 -0
  295. argus_alm-0.15.3/frontend/notification-counter.js +10 -0
  296. argus_alm-0.15.3/frontend/plan.js +10 -0
  297. argus_alm-0.15.3/frontend/profile-jobs.js +6 -0
  298. argus_alm-0.15.3/frontend/profile-notifications.js +5 -0
  299. argus_alm-0.15.3/frontend/profile-schedules.js +8 -0
  300. argus_alm-0.15.3/frontend/release-dashboard.js +8 -0
  301. argus_alm-0.15.3/frontend/release-page.js +15 -0
  302. argus_alm-0.15.3/frontend/release-planner.js +12 -0
  303. argus_alm-0.15.3/frontend/release-scheduler.js +8 -0
  304. argus_alm-0.15.3/frontend/run-by-plugin.js +10 -0
  305. argus_alm-0.15.3/frontend/teams.js +5 -0
  306. argus_alm-0.15.3/frontend/test-run-details.js +9 -0
  307. argus_alm-0.15.3/frontend/test-runs-breakout.js +14 -0
  308. argus_alm-0.15.3/frontend/test-runs-standalone.js +9 -0
  309. argus_alm-0.15.3/frontend/view-dashboard.js +8 -0
  310. argus_alm-0.15.3/frontend/view-user-resolver.js +11 -0
  311. argus_alm-0.15.3/frontend/work-area.js +7 -0
  312. argus_alm-0.15.3/package.json +59 -0
  313. argus_alm-0.15.3/profile/.gitkeep +0 -0
  314. argus_alm-0.15.3/public/argus.png +0 -0
  315. argus_alm-0.15.3/public/no-user-picture.png +0 -0
  316. argus_alm-0.15.3/pyproject.toml +117 -0
  317. argus_alm-0.15.3/pytest-argus-reporter/.envrc +14 -0
  318. argus_alm-0.15.3/pytest-argus-reporter/LICENSE +201 -0
  319. argus_alm-0.15.3/pytest-argus-reporter/MANIFEST.in +5 -0
  320. argus_alm-0.15.3/pytest-argus-reporter/README.md +171 -0
  321. argus_alm-0.15.3/pytest-argus-reporter/noxfile.py +27 -0
  322. argus_alm-0.15.3/pytest-argus-reporter/pyproject.toml +62 -0
  323. argus_alm-0.15.3/pytest-argus-reporter/pytest_argus_reporter.py +497 -0
  324. argus_alm-0.15.3/run_with_profiler.py +15 -0
  325. argus_alm-0.15.3/scripts/argus-status-page/index.html +58 -0
  326. argus_alm-0.15.3/scripts/argus-status-page/js/status.js +203 -0
  327. argus_alm-0.15.3/scripts/argus-status-page/static/app.css +26 -0
  328. argus_alm-0.15.3/scripts/argus-status-page/static/argus.png +0 -0
  329. argus_alm-0.15.3/scripts/argus-status-page/static/scylla.png +0 -0
  330. argus_alm-0.15.3/scripts/argus-status-page/status.json +44 -0
  331. argus_alm-0.15.3/scripts/migration/migration_2023-04-07.py +44 -0
  332. argus_alm-0.15.3/scripts/migration/migration_2024-04-14.py +62 -0
  333. argus_alm-0.15.3/setup.cfg +4 -0
  334. argus_alm-0.15.3/start_argus.sh +4 -0
  335. argus_alm-0.15.3/storage/profile_pictures/.gitignore +1 -0
  336. argus_alm-0.15.3/templates/admin/base.html.j2 +14 -0
  337. argus_alm-0.15.3/templates/admin/index.html.j2 +18 -0
  338. argus_alm-0.15.3/templates/auth/login.html.j2 +25 -0
  339. argus_alm-0.15.3/templates/auth/register.html.j2 +29 -0
  340. argus_alm-0.15.3/templates/base.html.j2 +40 -0
  341. argus_alm-0.15.3/templates/dashboard.html.j2 +16 -0
  342. argus_alm-0.15.3/templates/duty_planner.html.j2 +19 -0
  343. argus_alm-0.15.3/templates/error.html.j2 +17 -0
  344. argus_alm-0.15.3/templates/flash_debug.html.j2 +25 -0
  345. argus_alm-0.15.3/templates/groups.html.j2 +25 -0
  346. argus_alm-0.15.3/templates/home.html.j2 +9 -0
  347. argus_alm-0.15.3/templates/notifications/assigned.html.j2 +1 -0
  348. argus_alm-0.15.3/templates/notifications/assigned_email.html.j2 +1 -0
  349. argus_alm-0.15.3/templates/notifications/email_mention.html.j2 +2 -0
  350. argus_alm-0.15.3/templates/notifications/mention.html.j2 +1 -0
  351. argus_alm-0.15.3/templates/notifications/view_action_item_assigned.html.j2 +3 -0
  352. argus_alm-0.15.3/templates/notifications/view_action_item_assigned_email.html.j2 +4 -0
  353. argus_alm-0.15.3/templates/notifications/view_highlight_mention.html.j2 +1 -0
  354. argus_alm-0.15.3/templates/notifications/view_highlight_mention_email.html.j2 +12 -0
  355. argus_alm-0.15.3/templates/partials/nav_bar.html.j2 +40 -0
  356. argus_alm-0.15.3/templates/plan_dashboard.html.j2 +19 -0
  357. argus_alm-0.15.3/templates/profile.html.j2 +106 -0
  358. argus_alm-0.15.3/templates/profile_jobs.html.j2 +19 -0
  359. argus_alm-0.15.3/templates/profile_notifications.html.j2 +19 -0
  360. argus_alm-0.15.3/templates/profile_schedules.html.j2 +22 -0
  361. argus_alm-0.15.3/templates/release_dashboard.html.j2 +19 -0
  362. argus_alm-0.15.3/templates/release_planner.html.j2 +19 -0
  363. argus_alm-0.15.3/templates/release_schedule.html.j2 +19 -0
  364. argus_alm-0.15.3/templates/releases.html.j2 +39 -0
  365. argus_alm-0.15.3/templates/run_view_by_plugin.html.j2 +21 -0
  366. argus_alm-0.15.3/templates/runs.html.j2 +33 -0
  367. argus_alm-0.15.3/templates/standalone_test_with_runs.html.j2 +20 -0
  368. argus_alm-0.15.3/templates/teams.html.j2 +19 -0
  369. argus_alm-0.15.3/templates/test_run.html.j2 +19 -0
  370. argus_alm-0.15.3/templates/test_runs.html.j2 +20 -0
  371. argus_alm-0.15.3/templates/tests.html.j2 +25 -0
  372. argus_alm-0.15.3/templates/view_dashboard.html.j2 +19 -0
  373. argus_alm-0.15.3/templates/views.html.j2 +40 -0
  374. argus_alm-0.15.3/tsconfig.json +16 -0
  375. argus_alm-0.15.3/uv.lock +1308 -0
  376. argus_alm-0.15.3/uwsgi.ini +18 -0
  377. argus_alm-0.15.3/webpack.config.js +148 -0
  378. argus_alm-0.15.3/yarn.lock +2218 -0
  379. argus_alm-0.14.2/pyproject.toml +0 -61
  380. /argus_alm-0.14.2/argus/__init__.py → /argus_alm-0.15.3/.github/workflows/.gitkeep +0 -0
  381. {argus_alm-0.14.2 → argus_alm-0.15.3}/LICENSE +0 -0
  382. {argus_alm-0.14.2/argus/common → argus_alm-0.15.3/argus}/__init__.py +0 -0
  383. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/__init__.py +0 -0
  384. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/driver_matrix_tests/client.py +0 -0
  385. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/client/sct/types.py +0 -0
  386. {argus_alm-0.14.2 → argus_alm-0.15.3}/argus/common/enums.py +0 -0
@@ -0,0 +1,141 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
130
+ .idea
131
+
132
+ # Project stuff
133
+ argus.local.yaml
134
+ argus_web.yaml
135
+ /node_modules/
136
+ storage
137
+ migration
138
+ .vscode
139
+ migrate*.py
140
+ /config/argus.local.yaml
141
+ /config/argus_web.yaml
@@ -0,0 +1,16 @@
1
+ watch_file .python-version pyproject.toml
2
+
3
+ # get rid of pyenv in path - it doesn't play nice with uv venv
4
+ export PATH=$(echo $PATH | tr : '\n' | grep -v 'shims' | tr '\n' :)
5
+
6
+ export UV_PROJECT_ENVIRONMENT=.venv-argus
7
+
8
+ # activate the virtualenv after syncing; this puts the newly-installed
9
+ # binaries on PATH.
10
+ venv_path=$(expand_path "${UV_PROJECT_ENVIRONMENT:-.venv}")
11
+ if [[ -e $venv_path ]]; then
12
+ # shellcheck source=/dev/null
13
+ source "$venv_path/bin/activate"
14
+ fi
15
+
16
+ uv sync --all-extras
@@ -0,0 +1,47 @@
1
+ module.exports = {
2
+ "env": {
3
+ "browser": true,
4
+ "node": true,
5
+ "es2021": true
6
+ },
7
+ "extends": [
8
+ "eslint:recommended",
9
+ "plugin:@typescript-eslint/recommended"
10
+ ],
11
+ "parser": "@typescript-eslint/parser",
12
+ "parserOptions": {
13
+ "ecmaVersion": "latest",
14
+ "sourceType": "module"
15
+ },
16
+ "plugins": [
17
+ "@typescript-eslint",
18
+ "svelte3"
19
+ ],
20
+ "overrides": [
21
+ {
22
+ files: ["*.svelte"],
23
+ processor: "svelte3/svelte3"
24
+ }
25
+ ],
26
+ "settings": {
27
+ "svelte3/typescript": true
28
+ },
29
+ "rules": {
30
+ "indent": [
31
+ "error",
32
+ 4
33
+ ],
34
+ "linebreak-style": [
35
+ "error",
36
+ "unix"
37
+ ],
38
+ "quotes": [
39
+ "error",
40
+ "double"
41
+ ],
42
+ "semi": [
43
+ "error",
44
+ "always"
45
+ ]
46
+ }
47
+ };
@@ -0,0 +1,35 @@
1
+ # This is a basic workflow to help you get started with Actions
2
+
3
+ name: Lint code
4
+
5
+ # Controls when the workflow will run
6
+ on:
7
+ # Triggers the workflow on push or pull request events but only for the master branch
8
+ push:
9
+ branches: [ master ]
10
+ pull_request:
11
+ branches: [ master ]
12
+
13
+ # Allows you to run this workflow manually from the Actions tab
14
+ workflow_dispatch:
15
+
16
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
+ jobs:
18
+ lint:
19
+ runs-on: ubuntu-latest
20
+
21
+ steps:
22
+ - name: Checkout code
23
+ uses: actions/checkout@v3
24
+
25
+ - name: Install uv
26
+ uses: astral-sh/setup-uv@v6
27
+ with:
28
+ enable-cache: true
29
+ python-version: '3.12'
30
+
31
+ - name: Install project dependencies
32
+ run: uv sync --extra web-backend --extra dev
33
+
34
+ - name: Run precommit hooks
35
+ run: uv run pre-commit run --all-files
@@ -0,0 +1,63 @@
1
+ name: Release on Pypi and GitHub
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ push:
7
+ tags:
8
+ - 'v*' # Trigger on version tags like v1.0.0
9
+
10
+ jobs:
11
+
12
+ build:
13
+ name: Build distribution 📦
14
+ runs-on: ubuntu-latest
15
+
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ persist-credentials: false
20
+ - name: Install uv
21
+ uses: astral-sh/setup-uv@v6
22
+ with:
23
+ enable-cache: true
24
+ python-version: '3.12'
25
+ - name: Build a binary wheel and a source tarball
26
+ run: |
27
+ uv build
28
+ uv build pytest-argus-reporter/ -o dist
29
+ - name: Store the distribution packages
30
+ uses: actions/upload-artifact@v4
31
+ with:
32
+ name: python-package-distributions
33
+ path: dist/
34
+
35
+ publish-to-pypi:
36
+ name: >-
37
+ Publish Python 🐍 distribution 📦 to PyPI
38
+ if: github.ref_type == 'tag'
39
+ needs:
40
+ - build
41
+ runs-on: ubuntu-latest
42
+ environment:
43
+ name: pypi
44
+ url: https://pypi.org/p/argus-alm # Replace <package-name> with your PyPI project name
45
+ permissions:
46
+ id-token: write # IMPORTANT: mandatory for trusted publishing
47
+ contents: write
48
+
49
+ steps:
50
+ - name: Download all the dists
51
+ uses: actions/download-artifact@v4
52
+ with:
53
+ name: python-package-distributions
54
+ path: dist/
55
+
56
+ - name: Publish distribution 📦 to PyPI
57
+ uses: pypa/gh-action-pypi-publish@release/v1
58
+
59
+ - name: Create GitHub release
60
+ uses: softprops/action-gh-release@v2
61
+ with:
62
+ generate_release_notes: true
63
+ files: dist/*
@@ -0,0 +1,44 @@
1
+ # This is a basic workflow to help you get started with Actions
2
+
3
+ name: Unit tests
4
+
5
+ # Controls when the workflow will run
6
+ on:
7
+ # Triggers the workflow on push or pull request events but only for the master branch
8
+ push:
9
+ branches: [ master ]
10
+ pull_request:
11
+ branches: [ master ]
12
+
13
+ # Allows you to run this workflow manually from the Actions tab
14
+ workflow_dispatch:
15
+
16
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
+ jobs:
18
+ test:
19
+ runs-on: ubuntu-latest
20
+
21
+ steps:
22
+ - name: Checkout code
23
+ uses: actions/checkout@v3
24
+
25
+ - name: Install uv
26
+ uses: astral-sh/setup-uv@v6
27
+ with:
28
+ enable-cache: true
29
+ python-version: '3.12'
30
+
31
+ - name: Install project dependencies
32
+ run: uv sync --extra web-backend --extra dev
33
+
34
+ - name: Verify Docker installation
35
+ run: docker --version
36
+
37
+ - name: Run tests
38
+ run: uv run pytest
39
+
40
+ - name: Run pytest-argus-reporter tests
41
+ run: |
42
+ cd pytest-argus-reporter
43
+ uv sync --all-extras
44
+ uv run nox
@@ -0,0 +1,139 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
130
+ .idea
131
+
132
+ # Project stuff
133
+ argus.*.yaml
134
+ argus_web.yaml
135
+ /node_modules/
136
+ /migration
137
+ .vscode
138
+ /profile/*
139
+ !/profile/.gitkeep
@@ -0,0 +1,34 @@
1
+ # See https://pre-commit.com for more information
2
+ # See https://pre-commit.com/hooks.html for more hooks
3
+ repos:
4
+ - repo: https://github.com/pre-commit/pre-commit-hooks
5
+ rev: v5.0.0
6
+ hooks:
7
+ - id: trailing-whitespace
8
+ - id: end-of-file-fixer
9
+ - id: check-yaml
10
+ args:
11
+ - --allow-multiple-documents
12
+ - id: check-added-large-files
13
+ - id: check-json
14
+ - id: detect-private-key
15
+
16
+ - repo: local
17
+ hooks:
18
+ - id: ruff_format
19
+ name: ruff format
20
+ entry: ruff format
21
+ language: system
22
+ types: [python]
23
+
24
+ - id: ruff_check
25
+ name: ruff check
26
+ entry: ruff check --fix --preview
27
+ language: system
28
+ types: [python]
29
+
30
+ - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
31
+ rev: v9.22.0
32
+ hooks:
33
+ - id: commitlint
34
+ stages: [commit-msg]
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ tabWidth: 4,
3
+ printWidth: 120,
4
+ semi: true,
5
+ singleQuote: false,
6
+ allowShorthand: true,
7
+ }
@@ -0,0 +1,36 @@
1
+ ARG PYTHON_VERSION=3.10.4-bullseye
2
+
3
+ FROM python:${PYTHON_VERSION}
4
+ ENV WEBPACK_ENVIRONMENT=production
5
+ ENV FLASK_ENV=production
6
+ ENV CQLENG_ALLOW_SCHEMA_MANAGEMENT=1
7
+ ENV ARGUS_USER=argus
8
+ # Create daemon user
9
+ RUN useradd -s /bin/bash -c "Argus User" -m ${ARGUS_USER}
10
+ ENV PATH="$PATH:/home/${ARGUS_USER}/.local/bin"
11
+ # Upgrade everything
12
+ RUN apt-get update -y \
13
+ && apt-get upgrade -y
14
+ # Install npm and python build dependencies
15
+ RUN apt-get install -y build-essential apt-utils
16
+ # Install nginx
17
+ RUN apt-get install -y nginx-full && \
18
+ chown ${ARGUS_USER}:${ARGUS_USER} -R /var/log/nginx /var/lib/nginx
19
+ # Install Node.js
20
+ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
21
+ && apt-get install -y nodejs \
22
+ && npm i -g yarn
23
+ # Install uv
24
+ USER ${ARGUS_USER}
25
+ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
26
+ # Copy project files
27
+ COPY --chown=${ARGUS_USER}:${ARGUS_USER} . /app
28
+ WORKDIR /app
29
+ # Build project
30
+ RUN uv sync --extra web-backend --extra docker-image \
31
+ && yarn \
32
+ && WEBPACK_ENVIRONMENT=${WEBPACK_ENVIRONMENT} yarn webpack \
33
+ && mkdir /app/nginx
34
+ VOLUME [ "/app/storage", "/app/config" ]
35
+ EXPOSE 8000/tcp
36
+ ENTRYPOINT [ "./docker-entrypoint.sh" ]
@@ -0,0 +1,2 @@
1
+ prune **/tests
2
+ prune **/backend
@@ -1,23 +1,50 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: argus-alm
3
- Version: 0.14.2
3
+ Version: 0.15.3
4
4
  Summary: Argus
5
- Home-page: https://github.com/scylladb/argus
6
- License: Apache-2.0
7
- Author: Alexey Kartashov
8
- Author-email: alexey.kartashov@scylladb.com
9
- Requires-Python: >=3.10,<4.0
10
- Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.10
13
- Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Programming Language :: Python :: 3.12
15
- Requires-Dist: click (>=8.1.3,<9.0.0)
16
- Requires-Dist: requests (>=2.26.0,<3.0.0)
5
+ Author-email: Alexey Kartashov <alexey.kartashov@scylladb.com>, Łukasz Sójka <lukasz.sojka@scylladb.com>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/scylladb/argus
17
8
  Project-URL: Repository, https://github.com/scylladb/argus
9
+ Requires-Python: >=3.12
18
10
  Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: requests>=2.26.0
13
+ Requires-Dist: click>=8.1.3
14
+ Provides-Extra: web-backend
15
+ Requires-Dist: PyYAML~=6.0.0; extra == "web-backend"
16
+ Requires-Dist: scylla-driver~=3.26.8; extra == "web-backend"
17
+ Requires-Dist: Flask~=3.0.0; extra == "web-backend"
18
+ Requires-Dist: Flask-WTF~=1.0.0; extra == "web-backend"
19
+ Requires-Dist: Flask-Login~=0.5.0; extra == "web-backend"
20
+ Requires-Dist: humanize~=3.13.1; extra == "web-backend"
21
+ Requires-Dist: python-magic~=0.4.24; extra == "web-backend"
22
+ Requires-Dist: uwsgi~=2.0.20; extra == "web-backend"
23
+ Requires-Dist: python-jenkins~=1.7.0; extra == "web-backend"
24
+ Requires-Dist: python-slugify~=6.1.1; extra == "web-backend"
25
+ Requires-Dist: pygithub~=2.6.1; extra == "web-backend"
26
+ Requires-Dist: boto3~=1.38.9; extra == "web-backend"
27
+ Provides-Extra: docker-image
28
+ Requires-Dist: supervisor~=4.2.4; extra == "docker-image"
29
+ Provides-Extra: dev
30
+ Requires-Dist: pytest==8.3.5; extra == "dev"
31
+ Requires-Dist: coverage==7.8.2; extra == "dev"
32
+ Requires-Dist: docker==7.1.0; extra == "dev"
33
+ Requires-Dist: ipython~=8.36.0; extra == "dev"
34
+ Requires-Dist: pre-commit>=4.2.0; extra == "dev"
35
+ Requires-Dist: ruff~=0.11.11; extra == "dev"
36
+ Requires-Dist: autopep8>=2.3.2; extra == "dev"
37
+ Requires-Dist: requests-mock~=1.12.1; extra == "dev"
38
+ Requires-Dist: codecov~=2.1.12; extra == "dev"
39
+ Requires-Dist: pytest-cov~=6.1.1; extra == "dev"
40
+ Requires-Dist: nox~=2025.5.1; extra == "dev"
41
+ Requires-Dist: pytest-xdist~=3.7.0; extra == "dev"
42
+ Requires-Dist: pytest-subtests~=0.14.1; extra == "dev"
43
+ Requires-Dist: boto3-stubs~=1.38.9; extra == "dev"
44
+ Dynamic: license-file
19
45
 
20
46
  # Argus
47
+ [![PyPI - Version](https://img.shields.io/pypi/v/argus-alm)](https://pypi.python.org/pypi/argus-alm)
21
48
 
22
49
  ## Description
23
50
 
@@ -39,7 +66,7 @@ For development setup instructions, see [dev-setup.md](./docs/dev-setup.md).
39
66
 
40
67
  - nginx
41
68
 
42
- - poetry >=1.2.0b1
69
+ - uv
43
70
 
44
71
  ### From source
45
72
 
@@ -72,7 +99,7 @@ cd ~/app
72
99
  Install project dependencies:
73
100
 
74
101
  ```bash
75
- poetry install --with default,dev,web-backend,docker-image
102
+ uv sync --all-extras
76
103
  yarn install
77
104
  ```
78
105
 
@@ -124,6 +151,3 @@ WARNING: `start_argus.sh` assumes pyenv is installed into `~/.pyenv`
124
151
  sudo systemctl daemon-reload
125
152
  sudo systemctl enable --now argus.service
126
153
  ```
127
-
128
-
129
-
@@ -1,4 +1,5 @@
1
1
  # Argus
2
+ [![PyPI - Version](https://img.shields.io/pypi/v/argus-alm)](https://pypi.python.org/pypi/argus-alm)
2
3
 
3
4
  ## Description
4
5
 
@@ -20,7 +21,7 @@ For development setup instructions, see [dev-setup.md](./docs/dev-setup.md).
20
21
 
21
22
  - nginx
22
23
 
23
- - poetry >=1.2.0b1
24
+ - uv
24
25
 
25
26
  ### From source
26
27
 
@@ -53,7 +54,7 @@ cd ~/app
53
54
  Install project dependencies:
54
55
 
55
56
  ```bash
56
- poetry install --with default,dev,web-backend,docker-image
57
+ uv sync --all-extras
57
58
  yarn install
58
59
  ```
59
60
 
@@ -105,5 +106,3 @@ WARNING: `start_argus.sh` assumes pyenv is installed into `~/.pyenv`
105
106
  sudo systemctl daemon-reload
106
107
  sudo systemctl enable --now argus.service
107
108
  ```
108
-
109
-