argus-alm 0.14.1__tar.gz → 0.15.2__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.
- argus_alm-0.15.2/.dockerignore +141 -0
- argus_alm-0.15.2/.envrc +16 -0
- argus_alm-0.15.2/.eslintrc.js +47 -0
- argus_alm-0.15.2/.github/workflows/lint.yml +35 -0
- argus_alm-0.15.2/.github/workflows/release.yml +61 -0
- argus_alm-0.15.2/.github/workflows/test.yml +44 -0
- argus_alm-0.15.2/.gitignore +139 -0
- argus_alm-0.15.2/.pre-commit-config.yaml +34 -0
- argus_alm-0.15.2/.prettierrc.js +7 -0
- argus_alm-0.15.2/Dockerfile +36 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/PKG-INFO +43 -19
- {argus_alm-0.14.1 → argus_alm-0.15.2}/README.md +3 -4
- argus_alm-0.15.2/argus/_version.py +21 -0
- argus_alm-0.15.2/argus/backend/.gitkeep +0 -0
- argus_alm-0.15.2/argus/backend/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/cli.py +57 -0
- argus_alm-0.15.2/argus/backend/controller/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/controller/admin.py +20 -0
- argus_alm-0.15.2/argus/backend/controller/admin_api.py +355 -0
- argus_alm-0.15.2/argus/backend/controller/api.py +589 -0
- argus_alm-0.15.2/argus/backend/controller/auth.py +67 -0
- argus_alm-0.15.2/argus/backend/controller/client_api.py +109 -0
- argus_alm-0.15.2/argus/backend/controller/main.py +316 -0
- argus_alm-0.15.2/argus/backend/controller/notification_api.py +72 -0
- argus_alm-0.15.2/argus/backend/controller/notifications.py +13 -0
- argus_alm-0.15.2/argus/backend/controller/planner_api.py +194 -0
- argus_alm-0.15.2/argus/backend/controller/team.py +129 -0
- argus_alm-0.15.2/argus/backend/controller/team_ui.py +19 -0
- argus_alm-0.15.2/argus/backend/controller/testrun_api.py +513 -0
- argus_alm-0.15.2/argus/backend/controller/view_api.py +188 -0
- argus_alm-0.15.2/argus/backend/controller/views_widgets/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/controller/views_widgets/graphed_stats.py +54 -0
- argus_alm-0.15.2/argus/backend/controller/views_widgets/graphs.py +68 -0
- argus_alm-0.15.2/argus/backend/controller/views_widgets/highlights.py +135 -0
- argus_alm-0.15.2/argus/backend/controller/views_widgets/nemesis_stats.py +26 -0
- argus_alm-0.15.2/argus/backend/controller/views_widgets/summary.py +43 -0
- argus_alm-0.15.2/argus/backend/db.py +98 -0
- argus_alm-0.15.2/argus/backend/error_handlers.py +41 -0
- argus_alm-0.15.2/argus/backend/events/event_processors.py +34 -0
- argus_alm-0.15.2/argus/backend/models/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/models/argus_ai.py +24 -0
- argus_alm-0.15.2/argus/backend/models/github_issue.py +60 -0
- argus_alm-0.15.2/argus/backend/models/plan.py +24 -0
- argus_alm-0.15.2/argus/backend/models/result.py +187 -0
- argus_alm-0.15.2/argus/backend/models/runtime_store.py +58 -0
- argus_alm-0.15.2/argus/backend/models/view_widgets.py +25 -0
- argus_alm-0.15.2/argus/backend/models/web.py +403 -0
- argus_alm-0.15.2/argus/backend/plugins/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/plugins/core.py +248 -0
- argus_alm-0.15.2/argus/backend/plugins/driver_matrix_tests/controller.py +66 -0
- argus_alm-0.15.2/argus/backend/plugins/driver_matrix_tests/model.py +429 -0
- argus_alm-0.15.2/argus/backend/plugins/driver_matrix_tests/plugin.py +21 -0
- argus_alm-0.15.2/argus/backend/plugins/driver_matrix_tests/raw_types.py +62 -0
- argus_alm-0.15.2/argus/backend/plugins/driver_matrix_tests/service.py +61 -0
- argus_alm-0.15.2/argus/backend/plugins/driver_matrix_tests/udt.py +42 -0
- argus_alm-0.15.2/argus/backend/plugins/generic/model.py +86 -0
- argus_alm-0.15.2/argus/backend/plugins/generic/plugin.py +15 -0
- argus_alm-0.15.2/argus/backend/plugins/generic/types.py +14 -0
- argus_alm-0.15.2/argus/backend/plugins/loader.py +39 -0
- argus_alm-0.15.2/argus/backend/plugins/sct/controller.py +224 -0
- argus_alm-0.15.2/argus/backend/plugins/sct/plugin.py +37 -0
- argus_alm-0.15.2/argus/backend/plugins/sct/resource_setup.py +177 -0
- argus_alm-0.15.2/argus/backend/plugins/sct/service.py +682 -0
- argus_alm-0.15.2/argus/backend/plugins/sct/testrun.py +288 -0
- argus_alm-0.15.2/argus/backend/plugins/sct/udt.py +100 -0
- argus_alm-0.15.2/argus/backend/plugins/sirenada/model.py +118 -0
- argus_alm-0.15.2/argus/backend/plugins/sirenada/plugin.py +16 -0
- argus_alm-0.15.2/argus/backend/service/admin.py +26 -0
- argus_alm-0.15.2/argus/backend/service/argus_service.py +696 -0
- argus_alm-0.15.2/argus/backend/service/build_system_monitor.py +185 -0
- argus_alm-0.15.2/argus/backend/service/client_service.py +127 -0
- argus_alm-0.15.2/argus/backend/service/event_service.py +18 -0
- argus_alm-0.15.2/argus/backend/service/github_service.py +233 -0
- argus_alm-0.15.2/argus/backend/service/jenkins_service.py +269 -0
- argus_alm-0.15.2/argus/backend/service/notification_manager.py +159 -0
- argus_alm-0.15.2/argus/backend/service/planner_service.py +608 -0
- argus_alm-0.15.2/argus/backend/service/release_manager.py +229 -0
- argus_alm-0.15.2/argus/backend/service/results_service.py +690 -0
- argus_alm-0.15.2/argus/backend/service/stats.py +610 -0
- argus_alm-0.15.2/argus/backend/service/team_manager_service.py +82 -0
- argus_alm-0.15.2/argus/backend/service/test_lookup.py +172 -0
- argus_alm-0.15.2/argus/backend/service/testrun.py +489 -0
- argus_alm-0.15.2/argus/backend/service/user.py +308 -0
- argus_alm-0.15.2/argus/backend/service/views.py +219 -0
- argus_alm-0.15.2/argus/backend/service/views_widgets/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/service/views_widgets/graphed_stats.py +180 -0
- argus_alm-0.15.2/argus/backend/service/views_widgets/highlights.py +374 -0
- argus_alm-0.15.2/argus/backend/service/views_widgets/nemesis_stats.py +34 -0
- argus_alm-0.15.2/argus/backend/template_filters.py +27 -0
- argus_alm-0.15.2/argus/backend/tests/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/tests/client_service/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/tests/client_service/test_submit_results.py +79 -0
- argus_alm-0.15.2/argus/backend/tests/conftest.py +180 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/test_best_results.py +178 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/test_cell.py +65 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/test_chartjs_additional_functions.py +259 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/test_create_chartjs.py +220 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/test_result_metadata.py +100 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/test_results_service.py +203 -0
- argus_alm-0.15.2/argus/backend/tests/results_service/test_validation_rules.py +213 -0
- argus_alm-0.15.2/argus/backend/tests/view_widgets/__init__.py +0 -0
- argus_alm-0.15.2/argus/backend/tests/view_widgets/test_highlights_api.py +532 -0
- argus_alm-0.15.2/argus/backend/util/common.py +65 -0
- argus_alm-0.15.2/argus/backend/util/config.py +38 -0
- argus_alm-0.15.2/argus/backend/util/encoders.py +56 -0
- argus_alm-0.15.2/argus/backend/util/logsetup.py +80 -0
- argus_alm-0.15.2/argus/backend/util/module_loaders.py +30 -0
- argus_alm-0.15.2/argus/backend/util/send_email.py +91 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/base.py +1 -3
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/driver_matrix_tests/cli.py +19 -10
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/generic/cli.py +4 -2
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/generic/client.py +1 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/generic_result.py +48 -9
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/sct/client.py +1 -3
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/sirenada/client.py +4 -1
- argus_alm-0.15.2/argus/client/tests/__init__.py +0 -0
- argus_alm-0.15.2/argus/client/tests/conftest.py +19 -0
- argus_alm-0.15.2/argus/client/tests/test_package.py +45 -0
- argus_alm-0.15.2/argus/client/tests/test_results.py +224 -0
- argus_alm-0.15.2/argus/common/__init__.py +0 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/common/sct_types.py +3 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/common/sirenada_types.py +1 -1
- argus_alm-0.15.2/argus.yaml +12 -0
- argus_alm-0.15.2/argusAI/README.md +5 -0
- argus_alm-0.15.2/argusAI/deployment/argusai_event_similarity_processor.service +19 -0
- argus_alm-0.15.2/argusAI/event_similarity_processor.py +322 -0
- argus_alm-0.15.2/argusAI/logs/.gitignore +1 -0
- argus_alm-0.15.2/argusAI/pyproject.toml +10 -0
- argus_alm-0.15.2/argusAI/utils/__init__.py +0 -0
- argus_alm-0.15.2/argusAI/utils/event_message_sanitizer.py +215 -0
- argus_alm-0.15.2/argusAI/utils/scylla_connection.py +99 -0
- argus_alm-0.15.2/argusAI/uv.lock +1412 -0
- argus_alm-0.15.2/argus_alm.egg-info/PKG-INFO +153 -0
- argus_alm-0.15.2/argus_alm.egg-info/SOURCES.txt +486 -0
- argus_alm-0.15.2/argus_alm.egg-info/dependency_links.txt +1 -0
- argus_alm-0.15.2/argus_alm.egg-info/entry_points.txt +3 -0
- argus_alm-0.15.2/argus_alm.egg-info/requires.txt +35 -0
- argus_alm-0.15.2/argus_alm.egg-info/top_level.txt +1 -0
- argus_alm-0.15.2/argus_backend.py +43 -0
- argus_alm-0.15.2/argus_web.example.yaml +59 -0
- argus_alm-0.15.2/commitlint.config.js +21 -0
- argus_alm-0.15.2/dev-db/.gitignore +2 -0
- argus_alm-0.15.2/dev-db/alpha-config/cassandra-rackdc.properties +12 -0
- argus_alm-0.15.2/dev-db/alpha-config/machine_image_configured +0 -0
- argus_alm-0.15.2/dev-db/alpha-config/scylla.yaml +18 -0
- argus_alm-0.15.2/dev-db/alpha-data/.gitignore +2 -0
- argus_alm-0.15.2/dev-db/docker-compose.yaml +19 -0
- argus_alm-0.15.2/dev-db/export_data.py +79 -0
- argus_alm-0.15.2/dev-db/import_data.py +92 -0
- argus_alm-0.15.2/docker/config/nginx-docker.conf +45 -0
- argus_alm-0.15.2/docker/config/supervisord.conf +36 -0
- argus_alm-0.15.2/docker-entrypoint.sh +2 -0
- argus_alm-0.15.2/docs/api_usage.md +120 -0
- argus_alm-0.15.2/docs/argus_status_page.md +110 -0
- argus_alm-0.15.2/docs/argus_status_page_diagram.jpg +0 -0
- argus_alm-0.15.2/docs/config/argus.nginx.conf +24 -0
- argus_alm-0.15.2/docs/config/argus.service +14 -0
- argus_alm-0.15.2/docs/dev-setup.md +147 -0
- argus_alm-0.15.2/docs/generic_results.md +106 -0
- argus_alm-0.15.2/docs/pypi-guide.md +23 -0
- argus_alm-0.15.2/frontend/AdminPanel/AdminPanel.svelte +80 -0
- argus_alm-0.15.2/frontend/AdminPanel/AdminPanelWelcome.svelte +5 -0
- argus_alm-0.15.2/frontend/AdminPanel/BatchTestMover.svelte +72 -0
- argus_alm-0.15.2/frontend/AdminPanel/GroupCreator.svelte +77 -0
- argus_alm-0.15.2/frontend/AdminPanel/ReleaseCreator.svelte +73 -0
- argus_alm-0.15.2/frontend/AdminPanel/ReleaseDeletionConfirmationPopup.svelte +64 -0
- argus_alm-0.15.2/frontend/AdminPanel/ReleaseEditor.svelte +103 -0
- argus_alm-0.15.2/frontend/AdminPanel/ReleaseManager.svelte +577 -0
- argus_alm-0.15.2/frontend/AdminPanel/ReleaseManagerGroup.svelte +226 -0
- argus_alm-0.15.2/frontend/AdminPanel/ReleaseManagerTest.svelte +224 -0
- argus_alm-0.15.2/frontend/AdminPanel/TestCreator.svelte +111 -0
- argus_alm-0.15.2/frontend/AdminPanel/UserManager.svelte +363 -0
- argus_alm-0.15.2/frontend/AdminPanel/ViewListItem.svelte +81 -0
- argus_alm-0.15.2/frontend/AdminPanel/ViewSelectItem.svelte +54 -0
- argus_alm-0.15.2/frontend/AdminPanel/ViewWidget.svelte +111 -0
- argus_alm-0.15.2/frontend/AdminPanel/ViewsManager.svelte +472 -0
- argus_alm-0.15.2/frontend/Alert.js +10 -0
- argus_alm-0.15.2/frontend/Alerts/AlertMessage.svelte +65 -0
- argus_alm-0.15.2/frontend/Alerts/AlertWidget.svelte +107 -0
- argus_alm-0.15.2/frontend/Common/ApiUtils.js +36 -0
- argus_alm-0.15.2/frontend/Common/ArgusNotification.ts +98 -0
- argus_alm-0.15.2/frontend/Common/AssigneeSelector.svelte +51 -0
- argus_alm-0.15.2/frontend/Common/AssigneeUtils.js +10 -0
- argus_alm-0.15.2/frontend/Common/DateUtils.js +45 -0
- argus_alm-0.15.2/frontend/Common/DriverMatrixTypes.ts +34 -0
- argus_alm-0.15.2/frontend/Common/IssueDestinations.js +36 -0
- argus_alm-0.15.2/frontend/Common/JenkinsSettingsHelp.js +14 -0
- argus_alm-0.15.2/frontend/Common/ModalWindow.svelte +58 -0
- argus_alm-0.15.2/frontend/Common/PluginDispatch.js +17 -0
- argus_alm-0.15.2/frontend/Common/PluginNames.js +5 -0
- argus_alm-0.15.2/frontend/Common/RunUtils.js +76 -0
- argus_alm-0.15.2/frontend/Common/SelectUtils.js +3 -0
- argus_alm-0.15.2/frontend/Common/StateManagement.js +18 -0
- argus_alm-0.15.2/frontend/Common/TestStatus.js +171 -0
- argus_alm-0.15.2/frontend/Common/TextUtils.js +44 -0
- argus_alm-0.15.2/frontend/Common/UserTypes.ts +13 -0
- argus_alm-0.15.2/frontend/Common/UserUtils.js +14 -0
- argus_alm-0.15.2/frontend/Common/ViewTypes.js +162 -0
- argus_alm-0.15.2/frontend/Debug/FlashDebugComponent.svelte +23 -0
- argus_alm-0.15.2/frontend/Discussion/Comment.svelte +200 -0
- argus_alm-0.15.2/frontend/Discussion/CommentEditor.svelte +367 -0
- argus_alm-0.15.2/frontend/Discussion/MarkedMentionExtension.js +29 -0
- argus_alm-0.15.2/frontend/Discussion/MentionSelector.svelte +80 -0
- argus_alm-0.15.2/frontend/Discussion/UserProfile.svelte +12 -0
- argus_alm-0.15.2/frontend/Github/GithubIssue.svelte +306 -0
- argus_alm-0.15.2/frontend/Github/GithubIssues.svelte +337 -0
- argus_alm-0.15.2/frontend/Github/GithubIssuesCopyModal.svelte +109 -0
- argus_alm-0.15.2/frontend/Profile/JobsList.svelte +193 -0
- argus_alm-0.15.2/frontend/Profile/Login.svelte +85 -0
- argus_alm-0.15.2/frontend/Profile/Notification.svelte +94 -0
- argus_alm-0.15.2/frontend/Profile/NotificationCommentWrapper.svelte +134 -0
- argus_alm-0.15.2/frontend/Profile/NotificationCounter.svelte +40 -0
- argus_alm-0.15.2/frontend/Profile/NotificationSender.svelte +25 -0
- argus_alm-0.15.2/frontend/Profile/NotificationTestRunWrapper.svelte +7 -0
- argus_alm-0.15.2/frontend/Profile/NotificationsReader.svelte +131 -0
- argus_alm-0.15.2/frontend/Profile/ProfileJob.svelte +104 -0
- argus_alm-0.15.2/frontend/Profile/ProfileJobs.svelte +116 -0
- argus_alm-0.15.2/frontend/Profile/ProfileJobsTab.svelte +253 -0
- argus_alm-0.15.2/frontend/Profile/ProfileSchedules.svelte +239 -0
- argus_alm-0.15.2/frontend/Profile/User.svelte +61 -0
- argus_alm-0.15.2/frontend/Profile/UserSelection.svelte +22 -0
- argus_alm-0.15.2/frontend/Profile/ViewUserResolver.svelte +14 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/AssigneeFilter.svelte +31 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/FlatViewHelper.svelte +5 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/GroupedViewHelper.svelte +3 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/ReleaseActivity.svelte +136 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/ReleaseDashboard.svelte +133 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/ReleaseGithubIssues.svelte +85 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/TestDashboard.svelte +478 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/TestDashboardFlatView.svelte +37 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/TestDashboardGroup.svelte +99 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/TestDashboardTest.svelte +121 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/TestPopoutSelector.svelte +203 -0
- argus_alm-0.15.2/frontend/ReleaseDashboard/TestWithIssuesCard.svelte +17 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/CommentTableRow.svelte +100 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/DutyPlanner.svelte +357 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/EntityReplacer.svelte +68 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleasePlan.svelte +122 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleasePlanCopyForm.svelte +272 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleasePlanCreator.svelte +606 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleasePlanEditor.svelte +373 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleasePlanTable.svelte +277 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleasePlanner.svelte +264 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleasePlannerGridView.svelte +397 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ReleaseScheduler.svelte +174 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/Schedule.svelte +357 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/ScheduleTable.svelte +198 -0
- argus_alm-0.15.2/frontend/ReleasePlanner/SearchBar.svelte +108 -0
- argus_alm-0.15.2/frontend/Stats/ChartStats.svelte +43 -0
- argus_alm-0.15.2/frontend/Stats/NumberStats.svelte +184 -0
- argus_alm-0.15.2/frontend/Stats/ProgressBarStats.svelte +40 -0
- argus_alm-0.15.2/frontend/Stats/ReleaseStats.svelte +39 -0
- argus_alm-0.15.2/frontend/Stats/StatsFetcher.svelte +35 -0
- argus_alm-0.15.2/frontend/Stores/AlertStore.js +15 -0
- argus_alm-0.15.2/frontend/Stores/AssigneeSubscriber.js +86 -0
- argus_alm-0.15.2/frontend/Stores/SingleTestRunSubscriber.js +39 -0
- argus_alm-0.15.2/frontend/Stores/TestRunsSubscriber.js +71 -0
- argus_alm-0.15.2/frontend/Stores/UserlistSubscriber.js +35 -0
- argus_alm-0.15.2/frontend/Stores/WorkspaceStore.js +16 -0
- argus_alm-0.15.2/frontend/Teams/TeamCreateForm.svelte +93 -0
- argus_alm-0.15.2/frontend/Teams/TeamDetail.svelte +253 -0
- argus_alm-0.15.2/frontend/Teams/TeamList.svelte +66 -0
- argus_alm-0.15.2/frontend/Teams/TeamManager.svelte +78 -0
- argus_alm-0.15.2/frontend/Teams/TeamMember.svelte +156 -0
- argus_alm-0.15.2/frontend/Teams/TeamShort.svelte +102 -0
- argus_alm-0.15.2/frontend/Teams/TeamUtils.ts +117 -0
- argus_alm-0.15.2/frontend/TestRun/ActivityTab.svelte +87 -0
- argus_alm-0.15.2/frontend/TestRun/ArtifactRow.svelte +42 -0
- argus_alm-0.15.2/frontend/TestRun/ArtifactTab.svelte +110 -0
- argus_alm-0.15.2/frontend/TestRun/Components/Cell.svelte +56 -0
- argus_alm-0.15.2/frontend/TestRun/Components/Filters.svelte +144 -0
- argus_alm-0.15.2/frontend/TestRun/Components/GraphFilters.svelte +106 -0
- argus_alm-0.15.2/frontend/TestRun/Components/ResultTable.svelte +358 -0
- argus_alm-0.15.2/frontend/TestRun/Components/ScreenshotModal.svelte +70 -0
- argus_alm-0.15.2/frontend/TestRun/DriverMatrixBreakdown.svelte +205 -0
- argus_alm-0.15.2/frontend/TestRun/DriverMatrixRunInfo.svelte +140 -0
- argus_alm-0.15.2/frontend/TestRun/DriverMatrixTestCollection.svelte +66 -0
- argus_alm-0.15.2/frontend/TestRun/DriverMatrixTestRun.svelte +288 -0
- argus_alm-0.15.2/frontend/TestRun/DriverMatrixTestSuites.svelte +81 -0
- argus_alm-0.15.2/frontend/TestRun/EventsTab.svelte +271 -0
- argus_alm-0.15.2/frontend/TestRun/Generic/GenericTestRun.svelte +262 -0
- argus_alm-0.15.2/frontend/TestRun/Generic/GenericTestRunInfo.svelte +90 -0
- argus_alm-0.15.2/frontend/TestRun/HeartbeatIndicator.svelte +44 -0
- argus_alm-0.15.2/frontend/TestRun/IssueTab.svelte +22 -0
- argus_alm-0.15.2/frontend/TestRun/IssueTemplate.svelte +219 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/Build.js +39 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/BuildConfirmationDialog.svelte +17 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/BuildStartPlaceholder.svelte +10 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/BuildSuccessPlaceholder.svelte +126 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/CheckParam.svelte +9 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/CloneCreatePlaceholder.svelte +17 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/CloneSuccess.svelte +30 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/CloneTargetSelector.svelte +290 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/DummyCheckParam.svelte +13 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/DummySelectParam.svelte +13 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/JenkinsBuildModal.svelte +241 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/JenkinsCloneModal.svelte +363 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/LoadTargetsPlaceholder.svelte +10 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/ModalError.svelte +12 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/ParamFetchPlaceholder.svelte +10 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/ParameterEditor.svelte +91 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/SCTParameterWizard.svelte +590 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/SelectParam.svelte +18 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/StringParam.svelte +7 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/TextParam.svelte +7 -0
- argus_alm-0.15.2/frontend/TestRun/Jenkins/WizardUnavailable.svelte +3 -0
- argus_alm-0.15.2/frontend/TestRun/NemesisData.svelte +121 -0
- argus_alm-0.15.2/frontend/TestRun/NemesisReason.svelte +22 -0
- argus_alm-0.15.2/frontend/TestRun/NemesisTable.svelte +240 -0
- argus_alm-0.15.2/frontend/TestRun/PackagesInfo.svelte +194 -0
- argus_alm-0.15.2/frontend/TestRun/RawEvent.svelte +13 -0
- argus_alm-0.15.2/frontend/TestRun/ResourcesInfo.svelte +395 -0
- argus_alm-0.15.2/frontend/TestRun/ResultsGraph.svelte +465 -0
- argus_alm-0.15.2/frontend/TestRun/ResultsGraphs.svelte +360 -0
- argus_alm-0.15.2/frontend/TestRun/ResultsTab.svelte +161 -0
- argus_alm-0.15.2/frontend/TestRun/RunAssigneeSelector.svelte +160 -0
- argus_alm-0.15.2/frontend/TestRun/RunInvestigationStatusButton.svelte +90 -0
- argus_alm-0.15.2/frontend/TestRun/RunStatusButton.svelte +86 -0
- argus_alm-0.15.2/frontend/TestRun/SCTSubTests/Gemini/GeminiTabBodyComponent.svelte +59 -0
- argus_alm-0.15.2/frontend/TestRun/SCTSubTests/Gemini/GeminiTabComponent.svelte +16 -0
- argus_alm-0.15.2/frontend/TestRun/SCTSubTests/Performance/PerformanceTabBodyComponent.svelte +154 -0
- argus_alm-0.15.2/frontend/TestRun/SCTSubTests/Performance/PerformanceTabComponent.svelte +16 -0
- argus_alm-0.15.2/frontend/TestRun/SCTSubTests/Subtest.js +19 -0
- argus_alm-0.15.2/frontend/TestRun/Screenshots.svelte +51 -0
- argus_alm-0.15.2/frontend/TestRun/Sirenada/SirenadaIssueTemplate.svelte +162 -0
- argus_alm-0.15.2/frontend/TestRun/Sirenada/SirenadaRunInfo.svelte +109 -0
- argus_alm-0.15.2/frontend/TestRun/Sirenada/SirenadaTestBreakdown.svelte +226 -0
- argus_alm-0.15.2/frontend/TestRun/Sirenada/SirenadaTestRun.svelte +290 -0
- argus_alm-0.15.2/frontend/TestRun/StructuredEvent.svelte +269 -0
- argus_alm-0.15.2/frontend/TestRun/TestRun.svelte +524 -0
- argus_alm-0.15.2/frontend/TestRun/TestRunComments.svelte +245 -0
- argus_alm-0.15.2/frontend/TestRun/TestRunInfo.svelte +335 -0
- argus_alm-0.15.2/frontend/TestRun/jUnitChart.svelte +57 -0
- argus_alm-0.15.2/frontend/TestRun/jUnitResults.svelte +91 -0
- argus_alm-0.15.2/frontend/Views/ViewDashboard.svelte +148 -0
- argus_alm-0.15.2/frontend/Views/ViewSelect.svelte +46 -0
- argus_alm-0.15.2/frontend/Views/WidgetSettingTypes/CheckValue.svelte +21 -0
- argus_alm-0.15.2/frontend/Views/WidgetSettingTypes/IntegerValue.svelte +21 -0
- argus_alm-0.15.2/frontend/Views/WidgetSettingTypes/MultiSelectValue.svelte +27 -0
- argus_alm-0.15.2/frontend/Views/WidgetSettingTypes/MultiStringValue.svelte +46 -0
- argus_alm-0.15.2/frontend/Views/WidgetSettingTypes/StringValue.svelte +21 -0
- argus_alm-0.15.2/frontend/Views/Widgets/GraphsWidget/GraphsWidget.svelte +264 -0
- argus_alm-0.15.2/frontend/Views/Widgets/SummaryWidget/RunIssues.svelte +57 -0
- argus_alm-0.15.2/frontend/Views/Widgets/SummaryWidget/SummaryWidget.svelte +419 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGithubIssues.svelte +43 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/AssigneeCell.svelte +34 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/Filters.svelte +43 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/Interfaces.ts +46 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/InvestigationStatusCell.svelte +30 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/IssuesCell.svelte +51 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/NemesisTable.svelte +52 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/PaginatedTable.svelte +200 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/StackTracePreview.svelte +53 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/StatusBadge.svelte +16 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/StatusCell.svelte +23 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats/TestRunTable.svelte +147 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewGraphedStats.svelte +567 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewHighlights/ActionItem.svelte +156 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewHighlights/Comment.svelte +77 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewHighlights/HighlightItem.svelte +141 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewHighlights/ViewHighlights.svelte +439 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewNemesisStats.svelte +739 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewReleaseStats.svelte +18 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewTestDashboard.svelte +35 -0
- argus_alm-0.15.2/frontend/Views/Widgets/ViewUnsupportedPlaceholder.svelte +3 -0
- argus_alm-0.15.2/frontend/WorkArea/AssigneeList.svelte +49 -0
- argus_alm-0.15.2/frontend/WorkArea/JobConfigureModal.svelte +221 -0
- argus_alm-0.15.2/frontend/WorkArea/RunGroup.svelte +178 -0
- argus_alm-0.15.2/frontend/WorkArea/RunRelease.svelte +188 -0
- argus_alm-0.15.2/frontend/WorkArea/Test.svelte +145 -0
- argus_alm-0.15.2/frontend/WorkArea/TestRunDispatcher.svelte +11 -0
- argus_alm-0.15.2/frontend/WorkArea/TestRuns.svelte +493 -0
- argus_alm-0.15.2/frontend/WorkArea/TestRunsMessage.svelte +10 -0
- argus_alm-0.15.2/frontend/WorkArea/TestRunsPanel.svelte +131 -0
- argus_alm-0.15.2/frontend/WorkArea/TestRunsSelector.svelte +197 -0
- argus_alm-0.15.2/frontend/WorkArea/UnknownTest.svelte +28 -0
- argus_alm-0.15.2/frontend/WorkArea/WorkArea.svelte +119 -0
- argus_alm-0.15.2/frontend/admin-panel.js +10 -0
- argus_alm-0.15.2/frontend/argus.css +176 -0
- argus_alm-0.15.2/frontend/argus.js +5 -0
- argus_alm-0.15.2/frontend/duty-planner.js +8 -0
- argus_alm-0.15.2/frontend/flashDebug.js +8 -0
- argus_alm-0.15.2/frontend/font-awesome.css +1 -0
- argus_alm-0.15.2/frontend/font-awesome.js +5 -0
- argus_alm-0.15.2/frontend/fonts/NotoSans-Bold.ttf +0 -0
- argus_alm-0.15.2/frontend/fonts/NotoSans-BoldItalic.ttf +0 -0
- argus_alm-0.15.2/frontend/fonts/NotoSans-Italic.ttf +0 -0
- argus_alm-0.15.2/frontend/fonts/NotoSans-Regular.ttf +0 -0
- argus_alm-0.15.2/frontend/fonts/OFL.txt +93 -0
- argus_alm-0.15.2/frontend/fonts/noto.css +23 -0
- argus_alm-0.15.2/frontend/login.js +12 -0
- argus_alm-0.15.2/frontend/markdownOptions.js +13 -0
- argus_alm-0.15.2/frontend/notification-counter.js +10 -0
- argus_alm-0.15.2/frontend/plan.js +10 -0
- argus_alm-0.15.2/frontend/profile-jobs.js +6 -0
- argus_alm-0.15.2/frontend/profile-notifications.js +5 -0
- argus_alm-0.15.2/frontend/profile-schedules.js +8 -0
- argus_alm-0.15.2/frontend/release-dashboard.js +8 -0
- argus_alm-0.15.2/frontend/release-page.js +15 -0
- argus_alm-0.15.2/frontend/release-planner.js +12 -0
- argus_alm-0.15.2/frontend/release-scheduler.js +8 -0
- argus_alm-0.15.2/frontend/run-by-plugin.js +10 -0
- argus_alm-0.15.2/frontend/teams.js +5 -0
- argus_alm-0.15.2/frontend/test-run-details.js +9 -0
- argus_alm-0.15.2/frontend/test-runs-breakout.js +14 -0
- argus_alm-0.15.2/frontend/test-runs-standalone.js +9 -0
- argus_alm-0.15.2/frontend/view-dashboard.js +8 -0
- argus_alm-0.15.2/frontend/view-user-resolver.js +11 -0
- argus_alm-0.15.2/frontend/work-area.js +7 -0
- argus_alm-0.15.2/package.json +59 -0
- argus_alm-0.15.2/profile/.gitkeep +0 -0
- argus_alm-0.15.2/public/argus.png +0 -0
- argus_alm-0.15.2/public/no-user-picture.png +0 -0
- argus_alm-0.15.2/pyproject.toml +117 -0
- argus_alm-0.15.2/pytest-argus-reporter/.envrc +14 -0
- argus_alm-0.15.2/pytest-argus-reporter/LICENSE +201 -0
- argus_alm-0.15.2/pytest-argus-reporter/MANIFEST.in +5 -0
- argus_alm-0.15.2/pytest-argus-reporter/README.md +171 -0
- argus_alm-0.15.2/pytest-argus-reporter/noxfile.py +27 -0
- argus_alm-0.15.2/pytest-argus-reporter/pyproject.toml +62 -0
- argus_alm-0.15.2/pytest-argus-reporter/pytest_argus_reporter.py +497 -0
- argus_alm-0.15.2/pytest-argus-reporter/tests/conftest.py +75 -0
- argus_alm-0.15.2/pytest-argus-reporter/tests/test_argus_reporter.py +511 -0
- argus_alm-0.15.2/pytest-argus-reporter/tests/test_slices.py +61 -0
- argus_alm-0.15.2/pytest-argus-reporter/tests/test_xdist.py +42 -0
- argus_alm-0.15.2/run_with_profiler.py +15 -0
- argus_alm-0.15.2/scripts/argus-status-page/index.html +58 -0
- argus_alm-0.15.2/scripts/argus-status-page/js/status.js +203 -0
- argus_alm-0.15.2/scripts/argus-status-page/static/app.css +26 -0
- argus_alm-0.15.2/scripts/argus-status-page/static/argus.png +0 -0
- argus_alm-0.15.2/scripts/argus-status-page/static/scylla.png +0 -0
- argus_alm-0.15.2/scripts/argus-status-page/status.json +44 -0
- argus_alm-0.15.2/scripts/migration/migration_2023-04-07.py +44 -0
- argus_alm-0.15.2/scripts/migration/migration_2024-04-14.py +62 -0
- argus_alm-0.15.2/setup.cfg +4 -0
- argus_alm-0.15.2/start_argus.sh +4 -0
- argus_alm-0.15.2/storage/profile_pictures/.gitignore +1 -0
- argus_alm-0.15.2/templates/admin/base.html.j2 +14 -0
- argus_alm-0.15.2/templates/admin/index.html.j2 +18 -0
- argus_alm-0.15.2/templates/auth/login.html.j2 +25 -0
- argus_alm-0.15.2/templates/auth/register.html.j2 +29 -0
- argus_alm-0.15.2/templates/base.html.j2 +40 -0
- argus_alm-0.15.2/templates/dashboard.html.j2 +16 -0
- argus_alm-0.15.2/templates/duty_planner.html.j2 +19 -0
- argus_alm-0.15.2/templates/error.html.j2 +17 -0
- argus_alm-0.15.2/templates/flash_debug.html.j2 +25 -0
- argus_alm-0.15.2/templates/groups.html.j2 +25 -0
- argus_alm-0.15.2/templates/home.html.j2 +9 -0
- argus_alm-0.15.2/templates/notifications/assigned.html.j2 +1 -0
- argus_alm-0.15.2/templates/notifications/assigned_email.html.j2 +1 -0
- argus_alm-0.15.2/templates/notifications/email_mention.html.j2 +2 -0
- argus_alm-0.15.2/templates/notifications/mention.html.j2 +1 -0
- argus_alm-0.15.2/templates/notifications/view_action_item_assigned.html.j2 +3 -0
- argus_alm-0.15.2/templates/notifications/view_action_item_assigned_email.html.j2 +4 -0
- argus_alm-0.15.2/templates/notifications/view_highlight_mention.html.j2 +1 -0
- argus_alm-0.15.2/templates/notifications/view_highlight_mention_email.html.j2 +12 -0
- argus_alm-0.15.2/templates/partials/nav_bar.html.j2 +40 -0
- argus_alm-0.15.2/templates/plan_dashboard.html.j2 +19 -0
- argus_alm-0.15.2/templates/profile.html.j2 +106 -0
- argus_alm-0.15.2/templates/profile_jobs.html.j2 +19 -0
- argus_alm-0.15.2/templates/profile_notifications.html.j2 +19 -0
- argus_alm-0.15.2/templates/profile_schedules.html.j2 +22 -0
- argus_alm-0.15.2/templates/release_dashboard.html.j2 +19 -0
- argus_alm-0.15.2/templates/release_planner.html.j2 +19 -0
- argus_alm-0.15.2/templates/release_schedule.html.j2 +19 -0
- argus_alm-0.15.2/templates/releases.html.j2 +39 -0
- argus_alm-0.15.2/templates/run_view_by_plugin.html.j2 +21 -0
- argus_alm-0.15.2/templates/runs.html.j2 +33 -0
- argus_alm-0.15.2/templates/standalone_test_with_runs.html.j2 +20 -0
- argus_alm-0.15.2/templates/teams.html.j2 +19 -0
- argus_alm-0.15.2/templates/test_run.html.j2 +19 -0
- argus_alm-0.15.2/templates/test_runs.html.j2 +20 -0
- argus_alm-0.15.2/templates/tests.html.j2 +25 -0
- argus_alm-0.15.2/templates/view_dashboard.html.j2 +19 -0
- argus_alm-0.15.2/templates/views.html.j2 +40 -0
- argus_alm-0.15.2/tsconfig.json +16 -0
- argus_alm-0.15.2/uv.lock +1308 -0
- argus_alm-0.15.2/uwsgi.ini +18 -0
- argus_alm-0.15.2/webpack.config.js +148 -0
- argus_alm-0.15.2/yarn.lock +2218 -0
- argus_alm-0.14.1/pyproject.toml +0 -61
- /argus_alm-0.14.1/argus/__init__.py → /argus_alm-0.15.2/.github/workflows/.gitkeep +0 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/LICENSE +0 -0
- {argus_alm-0.14.1/argus/common → argus_alm-0.15.2/argus}/__init__.py +0 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/__init__.py +0 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/driver_matrix_tests/client.py +0 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/argus/client/sct/types.py +0 -0
- {argus_alm-0.14.1 → argus_alm-0.15.2}/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
|
argus_alm-0.15.2/.envrc
ADDED
|
@@ -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,61 @@
|
|
|
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: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
|
|
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
|
+
|
|
48
|
+
steps:
|
|
49
|
+
- name: Download all the dists
|
|
50
|
+
uses: actions/download-artifact@v4
|
|
51
|
+
with:
|
|
52
|
+
name: python-package-distributions
|
|
53
|
+
path: dist/
|
|
54
|
+
|
|
55
|
+
- name: Publish distribution 📦 to PyPI
|
|
56
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
57
|
+
|
|
58
|
+
- name: Create GitHub release
|
|
59
|
+
uses: softprops/action-gh-release@v1
|
|
60
|
+
with:
|
|
61
|
+
generate_release_notes: true
|
|
@@ -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,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" ]
|
|
@@ -1,23 +1,50 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: argus-alm
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.2
|
|
4
4
|
Summary: Argus
|
|
5
|
-
|
|
6
|
-
License: Apache-2.0
|
|
7
|
-
|
|
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
|
+
[](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
|
-
-
|
|
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
|
-
|
|
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
|
+
[](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
|
-
-
|
|
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
|
-
|
|
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
|
-
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# file generated by setuptools-scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
|
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
|
5
|
+
|
|
6
|
+
TYPE_CHECKING = False
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from typing import Tuple
|
|
9
|
+
from typing import Union
|
|
10
|
+
|
|
11
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
12
|
+
else:
|
|
13
|
+
VERSION_TUPLE = object
|
|
14
|
+
|
|
15
|
+
version: str
|
|
16
|
+
__version__: str
|
|
17
|
+
__version_tuple__: VERSION_TUPLE
|
|
18
|
+
version_tuple: VERSION_TUPLE
|
|
19
|
+
|
|
20
|
+
__version__ = version = '0.15.2'
|
|
21
|
+
__version_tuple__ = version_tuple = (0, 15, 2)
|
|
File without changes
|