├── .dockerignore ├── .envrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── cache_cleanup.yml │ ├── ci.yml │ ├── enforce-license-compliance.yml │ ├── mypy.yml │ ├── pr_detect_shared_changes.yml │ ├── self-hosted-release-pr.yml │ ├── self-hosted-release.yml │ └── upload-overwatch.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .vscode ├── README.md ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── VERSION ├── __init__.py ├── app.py ├── celery_config.py ├── celery_task_router.py ├── codecov.yml ├── conftest.py ├── database ├── __init__.py ├── base.py ├── engine.py ├── enums.py ├── events.py ├── models │ ├── __init__.py │ ├── core.py │ ├── labelanalysis.py │ ├── reports.py │ ├── staticanalysis.py │ └── timeseries.py ├── tests │ ├── __init__.py │ ├── factories │ │ ├── __init__.py │ │ ├── core.py │ │ ├── labelanalysis.py │ │ ├── reports.py │ │ ├── staticanalysis.py │ │ └── timeseries.py │ └── unit │ │ ├── test_engine.py │ │ ├── test_events.py │ │ ├── test_model_utils.py │ │ └── test_models.py └── utils.py ├── django_scaffold ├── __init__.py ├── settings.py └── tests_settings.py ├── docker-compose.yml ├── docker ├── Dockerfile ├── Dockerfile.requirements ├── init_db.sql └── test_codecov_config.yml ├── enterprise ├── ldd └── package.sh ├── generated_proto └── testrun │ ├── __init__.py │ └── ta_testrun_pb2.py ├── helpers ├── __init__.py ├── backfills.py ├── checkpoint_logger │ ├── __init__.py │ ├── flows.py │ └── prometheus.py ├── clock.py ├── comparison.py ├── components.py ├── config.py ├── email.py ├── environment.py ├── exceptions.py ├── github_installation.py ├── health_check.py ├── labels.py ├── log_context.py ├── logging_config.py ├── match.py ├── metrics.py ├── notifier.py ├── number.py ├── pathmap.py ├── reports.py ├── save_commit_error.py ├── sentry.py ├── string.py ├── tests │ ├── pathmap │ │ ├── __init__.py │ │ ├── test_pathmap.py │ │ └── test_tree.py │ └── unit │ │ ├── test_checkpoint_logger.py │ │ ├── test_clock.py │ │ ├── test_commit_error.py │ │ ├── test_components.py │ │ ├── test_config.py │ │ ├── test_environment.py │ │ ├── test_github_installation.py │ │ ├── test_health_check.py │ │ ├── test_log_context.py │ │ ├── test_logging_config.py │ │ ├── test_match.py │ │ ├── test_number.py │ │ ├── test_sentry.py │ │ ├── test_string.py │ │ └── test_version.py ├── timeseries.py ├── token_refresh.py └── version.py ├── json └── ci.json ├── main.py ├── manage.py ├── migrate-timeseries.sh ├── migrate.sh ├── migrate_timeseries.py ├── mypy.ini ├── protobuf └── ta_testrun.proto ├── pyproject.toml ├── pytest.ini ├── rollouts └── __init__.py ├── ruff.toml ├── services ├── __init__.py ├── activation.py ├── ai_pr_review.py ├── archive.py ├── bundle_analysis │ ├── __init__.py │ ├── comparison.py │ ├── exceptions.py │ ├── notify │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── contexts │ │ │ ├── __init__.py │ │ │ ├── comment.py │ │ │ ├── commit_status.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_comment_context.py │ │ │ │ ├── test_commit_status_context.py │ │ │ │ └── test_contexts.py │ │ ├── helpers.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── comment.py │ │ │ ├── commit_status.py │ │ │ ├── templates │ │ │ │ └── bundle_analysis_notify │ │ │ │ │ ├── bundle_comment.md │ │ │ │ │ ├── bundle_table.md │ │ │ │ │ ├── commit_status_summary.md │ │ │ │ │ ├── individual_bundle_data.md │ │ │ │ │ └── upgrade_comment.md │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_comment.py │ │ │ │ └── test_commit_status.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── samples │ │ │ │ ├── sample_1.sqlite │ │ │ │ └── sample_2.sqlite │ │ │ ├── test_helpers.py │ │ │ └── test_notify_service.py │ │ └── types.py │ ├── report.py │ └── tests │ │ ├── __init__.py │ │ └── test_bundle_analysis.py ├── cleanup │ ├── __init__.py │ ├── cleanup.py │ ├── models.py │ ├── owner.py │ ├── regular.py │ ├── relations.py │ ├── repository.py │ ├── tests │ │ ├── __init__.py │ │ ├── snapshots │ │ │ ├── regular_cleanup__generates_sliced_upload_cleanups__upload.txt │ │ │ ├── relations__builds_delete_queries__owner.txt │ │ │ ├── relations__builds_delete_queries__repository.txt │ │ │ └── relations__leaf_table__leaf.txt │ │ ├── test_regular_cleanup.py │ │ └── test_relations.py │ └── utils.py ├── commit_status.py ├── comparison │ ├── __init__.py │ ├── changes.py │ ├── conftest.py │ ├── tests │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── test_behind_by.py │ │ │ ├── test_changes.py │ │ │ ├── test_comparison_proxy.py │ │ │ ├── test_get_or_create_comparison.py │ │ │ └── test_reports_uploaded_count_diff.py │ └── types.py ├── comparison_utils.py ├── decoration.py ├── encryption.py ├── failure_normalizer.py ├── github.py ├── github_marketplace.py ├── license.py ├── lock_manager.py ├── notification │ ├── __init__.py │ ├── commit_notifications.py │ ├── notifiers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── checks │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── changes.py │ │ │ ├── checks_with_fallback.py │ │ │ ├── patch.py │ │ │ └── project.py │ │ ├── codecov_slack_app.py │ │ ├── comment │ │ │ ├── __init__.py │ │ │ └── conditions.py │ │ ├── generics.py │ │ ├── gitter.py │ │ ├── hipchat.py │ │ ├── irc.py │ │ ├── mixins │ │ │ ├── __init__.py │ │ │ ├── message │ │ │ │ ├── __init__.py │ │ │ │ ├── helpers.py │ │ │ │ ├── sections.py │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_helpers.py │ │ │ │ └── writers.py │ │ │ └── status.py │ │ ├── slack.py │ │ ├── status │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── changes.py │ │ │ ├── patch.py │ │ │ └── project.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── integration │ │ │ │ ├── __init__.py │ │ │ │ ├── cassetes │ │ │ │ │ └── test_comment │ │ │ │ │ │ └── TestCommentNotifierIntegration │ │ │ │ │ │ ├── test_notify.yaml │ │ │ │ │ │ ├── test_notify_gitlab.yaml │ │ │ │ │ │ ├── test_notify_new_layout.yaml │ │ │ │ │ │ ├── test_notify_test_results_error.yaml │ │ │ │ │ │ ├── test_notify_upgrade.yaml │ │ │ │ │ │ ├── test_notify_upload_limited.yaml │ │ │ │ │ │ └── test_notify_with_components.yaml │ │ │ │ └── test_comment.py │ │ │ └── unit │ │ │ │ ├── test_checks.py │ │ │ │ ├── test_codecov_slack_app.py │ │ │ │ ├── test_comment.py │ │ │ │ ├── test_comment_conditions.py │ │ │ │ ├── test_generics.py │ │ │ │ ├── test_gitter.py │ │ │ │ ├── test_hipchat.py │ │ │ │ ├── test_irc.py │ │ │ │ ├── test_slack.py │ │ │ │ ├── test_status.py │ │ │ │ └── test_webhook.py │ │ └── webhook.py │ └── tests │ │ └── unit │ │ ├── test_commit_notifications.py │ │ ├── test_comparison.py │ │ ├── test_notification_result.py │ │ └── test_notification_service.py ├── owner.py ├── path_fixer │ ├── __init__.py │ ├── fixpaths.py │ ├── match.py │ ├── tests │ │ └── unit │ │ │ ├── test_fixpaths.py │ │ │ ├── test_path_fixer.py │ │ │ ├── test_user_path_fixes.py │ │ │ └── test_user_path_includes.py │ ├── user_path_fixes.py │ └── user_path_includes.py ├── processing │ ├── __init__.py │ ├── flake_processing.py │ ├── intermediate.py │ ├── merging.py │ ├── metrics.py │ ├── processing.py │ ├── state.py │ └── types.py ├── report │ ├── README.md │ ├── __init__.py │ ├── fixes.py │ ├── languages │ │ ├── __init__.py │ │ ├── base.py │ │ ├── bullseye.py │ │ ├── clover.py │ │ ├── cobertura.py │ │ ├── coveralls.py │ │ ├── csharp.py │ │ ├── dlst.py │ │ ├── elm.py │ │ ├── flowcover.py │ │ ├── gap.py │ │ ├── gcov.py │ │ ├── go.py │ │ ├── helpers.py │ │ ├── jacoco.py │ │ ├── jetbrainsxml.py │ │ ├── lcov.py │ │ ├── lua.py │ │ ├── mono.py │ │ ├── node.py │ │ ├── pycoverage.py │ │ ├── rlang.py │ │ ├── salesforce.py │ │ ├── scala.py │ │ ├── scoverage.py │ │ ├── simplecov.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── unit │ │ │ │ ├── __init__.py │ │ │ │ ├── node │ │ │ │ ├── ifbinary.json │ │ │ │ ├── ifbinarymb.json │ │ │ │ ├── inline.json │ │ │ │ ├── inlinehit.json │ │ │ │ ├── node1-result.json │ │ │ │ ├── node1.json │ │ │ │ ├── node2-result.json │ │ │ │ ├── node2.json │ │ │ │ ├── node3-result.json │ │ │ │ └── node3.json │ │ │ │ ├── test_bullseye.py │ │ │ │ ├── test_clover.py │ │ │ │ ├── test_cobertura.py │ │ │ │ ├── test_coveralls.py │ │ │ │ ├── test_csharp.py │ │ │ │ ├── test_csharp2.py │ │ │ │ ├── test_dlst.py │ │ │ │ ├── test_flowcover.py │ │ │ │ ├── test_gap.py │ │ │ │ ├── test_gcov.py │ │ │ │ ├── test_go.py │ │ │ │ ├── test_jacoco.py │ │ │ │ ├── test_jetbrainsxml.py │ │ │ │ ├── test_lcov.py │ │ │ │ ├── test_lua.py │ │ │ │ ├── test_node.py │ │ │ │ ├── test_pycoverage.py │ │ │ │ ├── test_rlang.py │ │ │ │ ├── test_salesforce.py │ │ │ │ ├── test_scala.py │ │ │ │ ├── test_scoverage.py │ │ │ │ ├── test_simplecov.py │ │ │ │ ├── test_v1.py │ │ │ │ ├── test_vb.py │ │ │ │ ├── test_vb2.py │ │ │ │ ├── test_xcode.py │ │ │ │ ├── test_xcode2.py │ │ │ │ ├── test_xcodeplist.py │ │ │ │ ├── xccoverage.xml │ │ │ │ └── xcodeplist.txt │ │ ├── v1.py │ │ ├── vb.py │ │ ├── vb2.py │ │ ├── xcode.py │ │ └── xcodeplist.py │ ├── parser │ │ ├── __init__.py │ │ ├── legacy.py │ │ ├── tests │ │ │ └── unit │ │ │ │ ├── test_parsers.py │ │ │ │ └── test_version_one_parser.py │ │ ├── types.py │ │ └── version_one.py │ ├── prometheus_metrics.py │ ├── raw_upload_processor.py │ ├── report_builder.py │ ├── report_processor.py │ ├── tests │ │ └── unit │ │ │ ├── report.v3.json │ │ │ ├── test_fixes.py │ │ │ ├── test_parser.py │ │ │ ├── test_process.py │ │ │ ├── test_report_builder.py │ │ │ ├── test_report_processor.py │ │ │ ├── test_sessions.py │ │ │ └── test_transplant.py │ └── transplant.py ├── repository.py ├── seats.py ├── smtp.py ├── static_analysis │ ├── __init__.py │ ├── git_diff_parser.py │ ├── single_file_analyzer.py │ └── tests │ │ ├── __init__.py │ │ └── unit │ │ ├── __init__.py │ │ ├── test_git_diff_parser.py │ │ ├── test_single_file_analyzer.py │ │ └── test_static_analysis_comparison.py ├── stripe.py ├── template.py ├── test_analytics │ ├── ta_cache_rollups.py │ ├── ta_finish_upload.py │ ├── ta_metrics.py │ ├── ta_process_flakes.py │ ├── ta_processing.py │ ├── ta_processor.py │ ├── ta_timeseries.py │ ├── tests │ │ ├── conftest.py │ │ ├── samples │ │ │ └── sample_test.json │ │ ├── snapshots │ │ │ ├── ta_cache_rollups__cache_test_rollups__0.json │ │ │ ├── ta_cache_rollups__cache_test_rollups_use_timeseries_branch__0.json │ │ │ ├── ta_cache_rollups__cache_test_rollups_use_timeseries_main__0.json │ │ │ ├── ta_finish_upload__ta_finish_upload__0.txt │ │ │ ├── ta_finish_upload__ta_finish_upload__1.txt │ │ │ ├── ta_finish_upload__ta_finish_upload__2.txt │ │ │ ├── ta_finish_upload__ta_finish_upload__3.txt │ │ │ ├── ta_finish_upload__ta_finish_upload__4.txt │ │ │ ├── ta_process_flakes__testrun_filters__0.json │ │ │ └── ta_processing__insert_testruns_timeseries__0.json │ │ ├── test_ta_cache_rollups.py │ │ ├── test_ta_finish_upload.py │ │ ├── test_ta_process_flakes.py │ │ ├── test_ta_processing.py │ │ ├── test_ta_processor.py │ │ └── test_ta_timeseries.py │ └── utils.py ├── test_results.py ├── tests │ ├── __init__.py │ ├── cassetes │ │ ├── test_ai_pr_review │ │ │ ├── test_perform_duplicate_review.yaml │ │ │ ├── test_perform_initial_review.yaml │ │ │ └── test_perform_new_commit.yaml │ │ └── test_bots │ │ │ └── TestBotsService │ │ │ ├── test_get_owner_appropriate_bot_token_with_user_with_integration_bot_using_it.yaml │ │ │ ├── test_get_repo_appropriate_bot_token_repo_with_user_with_integration_bot_using_it.yaml │ │ │ ├── testget_owner_appropriate_bot_token_with_user_with_integration_bot_using_it.yaml │ │ │ └── testget_repo_appropriate_bot_token_repo_with_user_with_integration_bot_using_it.yaml │ ├── integration │ │ ├── cassetes │ │ │ ├── test_bots │ │ │ │ └── TestRepositoryServiceIntegration │ │ │ │ │ ├── test_get_repo_appropriate_bot_token_bad_data.yaml │ │ │ │ │ ├── test_get_repo_appropriate_bot_token_non_existing_integration.yaml │ │ │ │ │ └── test_get_token_type_mapping_bad_data.yaml │ │ │ └── test_repository_service │ │ │ │ └── TestRepositoryServiceIntegration │ │ │ │ ├── test_get_repo_provider_service_bitbucket.yaml │ │ │ │ ├── test_get_repo_provider_service_github.yaml │ │ │ │ └── test_get_repo_provider_service_gitlab.yaml │ │ └── test_repository_service.py │ ├── test_activation.py │ ├── test_ai_pr_review.py │ ├── test_billing.py │ ├── test_commit_status.py │ ├── test_decoration.py │ ├── test_failure_normalizer.py │ ├── test_github.py │ ├── test_license.py │ ├── test_owner_service.py │ ├── test_processing_state.py │ ├── test_redis.py │ ├── test_report.py │ ├── test_repository_service.py │ ├── test_seats.py │ ├── test_smtp.py │ ├── test_template.py │ ├── test_test_results.py │ ├── test_timeseries.py │ ├── test_urls.py │ └── unit │ │ ├── test_archive_service.py │ │ └── test_bots.py ├── timeseries.py ├── urls.py └── yaml │ ├── __init__.py │ ├── fetcher.py │ ├── parser.py │ ├── reader.py │ └── tests │ ├── samples │ ├── big.yaml │ └── sample_yaml_1.yaml │ ├── test_yaml.py │ ├── test_yaml_fetching.py │ ├── test_yaml_parsing.py │ ├── test_yaml_reader.py │ └── test_yaml_saving.py ├── ta_storage ├── __init__.py ├── pg.py └── tests │ └── test_pg.py ├── tasks ├── README.md ├── __init__.py ├── activate_account_user.py ├── ai_pr_review.py ├── backfill_existing_gh_app_installations.py ├── backfill_owners_without_gh_app_installations.py ├── backfill_test_instances.py ├── base.py ├── brolly_stats_rollup.py ├── bundle_analysis_notify.py ├── bundle_analysis_processor.py ├── bundle_analysis_save_measurements.py ├── cache_rollup_cron_task.py ├── cache_test_rollups.py ├── cache_test_rollups_redis.py ├── commit_update.py ├── compute_comparison.py ├── compute_component_comparison.py ├── crontasks.py ├── delete_owner.py ├── flare_cleanup.py ├── flush_repo.py ├── github_app_webhooks_check.py ├── github_marketplace.py ├── health_check.py ├── hourly_check.py ├── http_request.py ├── label_analysis.py ├── manual_trigger.py ├── new_user_activated.py ├── notify.py ├── notify_error.py ├── plan_manager_task.py ├── preprocess_upload.py ├── process_flakes.py ├── regular_cleanup.py ├── save_commit_measurements.py ├── send_email.py ├── static_analysis_suite_check.py ├── status_set_error.py ├── status_set_pending.py ├── sync_pull.py ├── sync_repo_languages.py ├── sync_repo_languages_gql.py ├── sync_repos.py ├── sync_teams.py ├── test_results_finisher.py ├── test_results_processor.py ├── tests │ ├── __init__.py │ ├── integration │ │ ├── __init__.py │ │ ├── cassetes │ │ │ ├── test_ghm_sync_plans │ │ │ │ └── TestGHMarketplaceSyncPlansTask │ │ │ │ │ ├── test_cancelled.yaml │ │ │ │ │ ├── test_purchase_by_existing_owner.yaml │ │ │ │ │ ├── test_purchase_listing_not_found.yaml │ │ │ │ │ ├── test_purchase_new_owner.yaml │ │ │ │ │ └── test_sync_all_plans.yaml │ │ │ ├── test_http_request_task │ │ │ │ └── TestHTTPRequestTask │ │ │ │ │ ├── test_http_request_run_async_200.yaml │ │ │ │ │ ├── test_http_request_run_async_400.yaml │ │ │ │ │ └── test_http_request_run_async_500.yaml │ │ │ ├── test_notify_task │ │ │ │ └── TestNotifyTask │ │ │ │ │ ├── test_notifier_call_no_head_commit_report.yaml │ │ │ │ │ ├── test_simple_call_no_notifiers.yaml │ │ │ │ │ ├── test_simple_call_only_status_notifiers.yaml │ │ │ │ │ ├── test_simple_call_only_status_notifiers_no_pull_request.yaml │ │ │ │ │ ├── test_simple_call_only_status_notifiers_with_pull_request.yaml │ │ │ │ │ └── test_simple_call_status_and_notifiers.yaml │ │ │ ├── test_status_set_error_task │ │ │ │ └── TestStatusSetErrorTask │ │ │ │ │ └── test_set_error.yaml │ │ │ ├── test_status_set_pending_task │ │ │ │ └── TestStatusSetPendingTask │ │ │ │ │ └── test_set_pending.yaml │ │ │ └── test_sync_pull │ │ │ │ └── TestPullSyncTask │ │ │ │ └── test_call_task.yaml │ │ ├── test_ai_pr_review.py │ │ ├── test_ghm_sync_plans.py │ │ ├── test_http_request_task.py │ │ ├── test_notify_task.py │ │ ├── test_send_email_task.py │ │ ├── test_status_set_error_task.py │ │ ├── test_status_set_pending_task.py │ │ ├── test_sync_pull.py │ │ ├── test_timeseries_backfill.py │ │ └── test_upload_e2e.py │ ├── samples │ │ ├── sample_chunks_1.txt │ │ ├── sample_chunks_4_sessions.txt │ │ ├── sample_chunks_with_header.txt │ │ ├── sample_multi_test_part_1.json │ │ ├── sample_multi_test_part_2.json │ │ ├── sample_ta_file.xml │ │ ├── sample_test.json │ │ ├── sample_test_missing_network.json │ │ ├── sample_test_network.json │ │ └── sample_uploaded_report_1.txt │ ├── unit │ │ ├── __init__.py │ │ ├── cassetes │ │ │ ├── test_add_to_sendgrid_list │ │ │ │ └── TestAddToSendgridListTask │ │ │ │ │ ├── test_add_to_list_invalid_list_with_list_type.yaml │ │ │ │ │ ├── test_add_to_list_invalid_owner.yaml │ │ │ │ │ ├── test_add_to_list_invalid_owner_no_list_type.yaml │ │ │ │ │ ├── test_add_to_list_no_list.yaml │ │ │ │ │ ├── test_end_of_trial_email.yaml │ │ │ │ │ ├── test_new_oauthed_users_email_with_email_type.yaml │ │ │ │ │ └── test_new_oauthed_users_email_with_list_type.yaml │ │ │ ├── test_commit_update │ │ │ │ └── TestCommitUpdate │ │ │ │ │ └── test_update_commit.yaml │ │ │ ├── test_send_email │ │ │ │ └── TestSendEmailTask │ │ │ │ │ ├── test_end_of_trial_email_with_email_type.yaml │ │ │ │ │ ├── test_end_of_trial_email_with_list_type.yaml │ │ │ │ │ ├── test_send_email_invalid_list_with_email_type.yaml │ │ │ │ │ ├── test_send_email_invalid_list_with_list_type.yaml │ │ │ │ │ ├── test_send_email_invalid_owner.yaml │ │ │ │ │ ├── test_send_email_invalid_owner_no_list_type.yaml │ │ │ │ │ └── test_send_email_no_list.yaml │ │ │ ├── test_sync_repos_task │ │ │ │ └── TestSyncReposTaskUnit │ │ │ │ │ ├── test_only_public_repos_already_in_db.yaml │ │ │ │ │ ├── test_only_public_repos_not_in_db.yaml │ │ │ │ │ ├── test_private_repos_set_bot.yaml │ │ │ │ │ ├── test_set_bot_gitlab_subgroups.yaml │ │ │ │ │ ├── test_sync_repos_using_integration.yaml │ │ │ │ │ ├── test_sync_repos_using_integration_no_repos.yaml │ │ │ │ │ └── test_sync_repos_with_feature_flag_django_call.yaml │ │ │ ├── test_sync_teams_task │ │ │ │ └── TestSyncTeamsTaskUnit │ │ │ │ │ ├── test_gitlab_subgroups.yaml │ │ │ │ │ ├── test_no_teams.yaml │ │ │ │ │ ├── test_team_data_updated.yaml │ │ │ │ │ └── test_team_removed.yaml │ │ │ ├── test_upload_finisher_task │ │ │ │ └── TestUploadFinisherTask │ │ │ │ │ └── test_upload_finisher_task_call.yaml │ │ │ ├── test_upload_processing_task │ │ │ │ └── TestUploadProcessorTask │ │ │ │ │ ├── test_upload_processor_task_call.yaml │ │ │ │ │ ├── test_upload_processor_task_call_should_delete.yaml │ │ │ │ │ ├── test_upload_task_call.yaml │ │ │ │ │ ├── test_upload_task_call_exception_within_individual_upload.yaml │ │ │ │ │ ├── test_upload_task_call_existing_chunks.yaml │ │ │ │ │ └── test_upload_task_call_with_try_later.yaml │ │ │ └── test_upload_task │ │ │ │ └── TestUploadTaskIntegration │ │ │ │ ├── test_upload_task_call.yaml │ │ │ │ ├── test_upload_task_call_bundle_analysis.yaml │ │ │ │ ├── test_upload_task_call_bundle_analysis_no_upload.yaml │ │ │ │ ├── test_upload_task_call_multiple_processors.yaml │ │ │ │ ├── test_upload_task_call_no_jobs.yaml │ │ │ │ ├── test_upload_task_call_test_results.yaml │ │ │ │ └── test_upload_task_proper_parent.yaml │ │ ├── conftest.py │ │ ├── samples │ │ │ ├── sample_opentelem_collected.json │ │ │ ├── sample_opentelem_input.json │ │ │ └── sample_opentelem_normalized.json │ │ ├── snapshots │ │ │ ├── cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries__0.json │ │ │ ├── cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries_branch__0.json │ │ │ └── cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries_main__0.json │ │ ├── test_activate_account_user.py │ │ ├── test_backfill_existing_gh_app_installations.py │ │ ├── test_backfill_owners_without_gh_app_installations.py │ │ ├── test_base.py │ │ ├── test_brolly_stats_rollup.py │ │ ├── test_bundle_analysis_notify_task.py │ │ ├── test_bundle_analysis_processor_task.py │ │ ├── test_bundle_analysis_save_measurements_task.py │ │ ├── test_cache_rollup_cron_task.py │ │ ├── test_cache_test_rollups.py │ │ ├── test_cache_test_rollups_redis.py │ │ ├── test_check_static_analysis.py │ │ ├── test_commit_update.py │ │ ├── test_compute_comparison.py │ │ ├── test_crontasks.py │ │ ├── test_delete_owner.py │ │ ├── test_flare_cleanup.py │ │ ├── test_flush_repo.py │ │ ├── test_ghm_sync_plans.py │ │ ├── test_github_app_webhooks_check.py │ │ ├── test_healthcheck_task.py │ │ ├── test_hourly_check.py │ │ ├── test_label_analysis.py │ │ ├── test_label_analysis_encoded_labels.py │ │ ├── test_manual_trigger.py │ │ ├── test_new_user_activated.py │ │ ├── test_notify_error_task.py │ │ ├── test_notify_task.py │ │ ├── test_planmanager_task.py │ │ ├── test_preprocess_upload.py │ │ ├── test_process_flakes.py │ │ ├── test_save_commit_measurements.py │ │ ├── test_send_email_task.py │ │ ├── test_status_set_error.py │ │ ├── test_status_set_pending.py │ │ ├── test_sync_pull.py │ │ ├── test_sync_repo_languages.py │ │ ├── test_sync_repo_languages_gql.py │ │ ├── test_sync_repos_task.py │ │ ├── test_sync_teams_task.py │ │ ├── test_test_results_finisher.py │ │ ├── test_test_results_processor_task.py │ │ ├── test_timeseries_backfill_commits.py │ │ ├── test_timeseries_backfill_dataset.py │ │ ├── test_timeseries_delete.py │ │ ├── test_trial_expiration.py │ │ ├── test_trial_expiration_cron.py │ │ ├── test_upload_finisher_task.py │ │ ├── test_upload_processing_task.py │ │ └── test_upload_task.py │ └── utils.py ├── timeseries_backfill.py ├── timeseries_delete.py ├── transplant_report.py ├── trial_expiration.py ├── trial_expiration_cron.py ├── update_branches.py ├── upload.py ├── upload_finisher.py ├── upload_processor.py └── upsert_component.py ├── templates ├── auto-refund.html ├── auto-refund.txt ├── base.html ├── failed-payment.html ├── failed-payment.txt ├── success-after-failed-payment.html ├── success-after-failed-payment.txt ├── test.html └── test.txt ├── test_utils └── base.py ├── tests ├── __init__.py ├── helpers.py ├── services │ └── notification │ │ └── notifiers │ │ └── comment │ │ └── test_conditions.py ├── test_debug.py └── unit │ ├── test_main.py │ └── test_task_router.py ├── uv.lock └── worker.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | uv sync 2 | source .venv/bin/activate -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cache_cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/cache_cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-license-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/enforce-license-compliance.yml -------------------------------------------------------------------------------- /.github/workflows/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/mypy.yml -------------------------------------------------------------------------------- /.github/workflows/pr_detect_shared_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/pr_detect_shared_changes.yml -------------------------------------------------------------------------------- /.github/workflows/self-hosted-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/self-hosted-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/self-hosted-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/self-hosted-release.yml -------------------------------------------------------------------------------- /.github/workflows/upload-overwatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.github/workflows/upload-overwatch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 -------------------------------------------------------------------------------- /.vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.vscode/README.md -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 25.4.1 -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/app.py -------------------------------------------------------------------------------- /celery_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/celery_config.py -------------------------------------------------------------------------------- /celery_task_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/celery_task_router.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/codecov.yml -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/conftest.py -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/base.py -------------------------------------------------------------------------------- /database/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/engine.py -------------------------------------------------------------------------------- /database/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/enums.py -------------------------------------------------------------------------------- /database/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/events.py -------------------------------------------------------------------------------- /database/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/models/__init__.py -------------------------------------------------------------------------------- /database/models/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/models/core.py -------------------------------------------------------------------------------- /database/models/labelanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/models/labelanalysis.py -------------------------------------------------------------------------------- /database/models/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/models/reports.py -------------------------------------------------------------------------------- /database/models/staticanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/models/staticanalysis.py -------------------------------------------------------------------------------- /database/models/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/models/timeseries.py -------------------------------------------------------------------------------- /database/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/tests/factories/__init__.py: -------------------------------------------------------------------------------- 1 | from database.tests.factories.core import * 2 | -------------------------------------------------------------------------------- /database/tests/factories/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/factories/core.py -------------------------------------------------------------------------------- /database/tests/factories/labelanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/factories/labelanalysis.py -------------------------------------------------------------------------------- /database/tests/factories/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/factories/reports.py -------------------------------------------------------------------------------- /database/tests/factories/staticanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/factories/staticanalysis.py -------------------------------------------------------------------------------- /database/tests/factories/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/factories/timeseries.py -------------------------------------------------------------------------------- /database/tests/unit/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/unit/test_engine.py -------------------------------------------------------------------------------- /database/tests/unit/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/unit/test_events.py -------------------------------------------------------------------------------- /database/tests/unit/test_model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/unit/test_model_utils.py -------------------------------------------------------------------------------- /database/tests/unit/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/tests/unit/test_models.py -------------------------------------------------------------------------------- /database/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/database/utils.py -------------------------------------------------------------------------------- /django_scaffold/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_scaffold/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/django_scaffold/settings.py -------------------------------------------------------------------------------- /django_scaffold/tests_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/django_scaffold/tests_settings.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/docker/Dockerfile.requirements -------------------------------------------------------------------------------- /docker/init_db.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE test_analytics; -------------------------------------------------------------------------------- /docker/test_codecov_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/docker/test_codecov_config.yml -------------------------------------------------------------------------------- /enterprise/ldd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/enterprise/ldd -------------------------------------------------------------------------------- /enterprise/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/enterprise/package.sh -------------------------------------------------------------------------------- /generated_proto/testrun/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generated_proto/testrun/ta_testrun_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/generated_proto/testrun/ta_testrun_pb2.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/backfills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/backfills.py -------------------------------------------------------------------------------- /helpers/checkpoint_logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/checkpoint_logger/__init__.py -------------------------------------------------------------------------------- /helpers/checkpoint_logger/flows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/checkpoint_logger/flows.py -------------------------------------------------------------------------------- /helpers/checkpoint_logger/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/checkpoint_logger/prometheus.py -------------------------------------------------------------------------------- /helpers/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/clock.py -------------------------------------------------------------------------------- /helpers/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/comparison.py -------------------------------------------------------------------------------- /helpers/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/components.py -------------------------------------------------------------------------------- /helpers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/config.py -------------------------------------------------------------------------------- /helpers/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/email.py -------------------------------------------------------------------------------- /helpers/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/environment.py -------------------------------------------------------------------------------- /helpers/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/exceptions.py -------------------------------------------------------------------------------- /helpers/github_installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/github_installation.py -------------------------------------------------------------------------------- /helpers/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/health_check.py -------------------------------------------------------------------------------- /helpers/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/labels.py -------------------------------------------------------------------------------- /helpers/log_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/log_context.py -------------------------------------------------------------------------------- /helpers/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/logging_config.py -------------------------------------------------------------------------------- /helpers/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/match.py -------------------------------------------------------------------------------- /helpers/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/metrics.py -------------------------------------------------------------------------------- /helpers/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/notifier.py -------------------------------------------------------------------------------- /helpers/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/number.py -------------------------------------------------------------------------------- /helpers/pathmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/pathmap.py -------------------------------------------------------------------------------- /helpers/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/reports.py -------------------------------------------------------------------------------- /helpers/save_commit_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/save_commit_error.py -------------------------------------------------------------------------------- /helpers/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/sentry.py -------------------------------------------------------------------------------- /helpers/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/string.py -------------------------------------------------------------------------------- /helpers/tests/pathmap/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /helpers/tests/pathmap/test_pathmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/pathmap/test_pathmap.py -------------------------------------------------------------------------------- /helpers/tests/pathmap/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/pathmap/test_tree.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_checkpoint_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_checkpoint_logger.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_clock.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_commit_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_commit_error.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_components.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_config.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_environment.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_github_installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_github_installation.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_health_check.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_log_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_log_context.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_logging_config.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_match.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_number.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_sentry.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_string.py -------------------------------------------------------------------------------- /helpers/tests/unit/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/tests/unit/test_version.py -------------------------------------------------------------------------------- /helpers/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/timeseries.py -------------------------------------------------------------------------------- /helpers/token_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/token_refresh.py -------------------------------------------------------------------------------- /helpers/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/helpers/version.py -------------------------------------------------------------------------------- /json/ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/json/ci.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/main.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/manage.py -------------------------------------------------------------------------------- /migrate-timeseries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/migrate-timeseries.sh -------------------------------------------------------------------------------- /migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/migrate.sh -------------------------------------------------------------------------------- /migrate_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/migrate_timeseries.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/mypy.ini -------------------------------------------------------------------------------- /protobuf/ta_testrun.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/protobuf/ta_testrun.proto -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/pytest.ini -------------------------------------------------------------------------------- /rollouts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/rollouts/__init__.py -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/ruff.toml -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/activation.py -------------------------------------------------------------------------------- /services/ai_pr_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/ai_pr_review.py -------------------------------------------------------------------------------- /services/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/archive.py -------------------------------------------------------------------------------- /services/bundle_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bundle_analysis/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/comparison.py -------------------------------------------------------------------------------- /services/bundle_analysis/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/exceptions.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/__init__.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/conftest.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/contexts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/contexts/__init__.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/contexts/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/contexts/comment.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/contexts/commit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/contexts/commit_status.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/contexts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bundle_analysis/notify/contexts/tests/test_comment_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/contexts/tests/test_comment_context.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/contexts/tests/test_commit_status_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/contexts/tests/test_commit_status_context.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/contexts/tests/test_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/contexts/tests/test_contexts.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/helpers.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/__init__.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/comment.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/commit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/commit_status.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/bundle_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/bundle_comment.md -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/bundle_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/bundle_table.md -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/commit_status_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/commit_status_summary.md -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/individual_bundle_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/individual_bundle_data.md -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/upgrade_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/templates/bundle_analysis_notify/upgrade_comment.md -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/tests/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/tests/test_comment.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/messages/tests/test_commit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/messages/tests/test_commit_status.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bundle_analysis/notify/tests/samples/sample_1.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/tests/samples/sample_1.sqlite -------------------------------------------------------------------------------- /services/bundle_analysis/notify/tests/samples/sample_2.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/tests/samples/sample_2.sqlite -------------------------------------------------------------------------------- /services/bundle_analysis/notify/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/tests/test_helpers.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/tests/test_notify_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/tests/test_notify_service.py -------------------------------------------------------------------------------- /services/bundle_analysis/notify/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/notify/types.py -------------------------------------------------------------------------------- /services/bundle_analysis/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/report.py -------------------------------------------------------------------------------- /services/bundle_analysis/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bundle_analysis/tests/test_bundle_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/bundle_analysis/tests/test_bundle_analysis.py -------------------------------------------------------------------------------- /services/cleanup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/cleanup/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/cleanup.py -------------------------------------------------------------------------------- /services/cleanup/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/models.py -------------------------------------------------------------------------------- /services/cleanup/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/owner.py -------------------------------------------------------------------------------- /services/cleanup/regular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/regular.py -------------------------------------------------------------------------------- /services/cleanup/relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/relations.py -------------------------------------------------------------------------------- /services/cleanup/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/repository.py -------------------------------------------------------------------------------- /services/cleanup/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/cleanup/tests/snapshots/regular_cleanup__generates_sliced_upload_cleanups__upload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/tests/snapshots/regular_cleanup__generates_sliced_upload_cleanups__upload.txt -------------------------------------------------------------------------------- /services/cleanup/tests/snapshots/relations__builds_delete_queries__owner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/tests/snapshots/relations__builds_delete_queries__owner.txt -------------------------------------------------------------------------------- /services/cleanup/tests/snapshots/relations__builds_delete_queries__repository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/tests/snapshots/relations__builds_delete_queries__repository.txt -------------------------------------------------------------------------------- /services/cleanup/tests/snapshots/relations__leaf_table__leaf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/tests/snapshots/relations__leaf_table__leaf.txt -------------------------------------------------------------------------------- /services/cleanup/tests/test_regular_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/tests/test_regular_cleanup.py -------------------------------------------------------------------------------- /services/cleanup/tests/test_relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/tests/test_relations.py -------------------------------------------------------------------------------- /services/cleanup/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/cleanup/utils.py -------------------------------------------------------------------------------- /services/commit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/commit_status.py -------------------------------------------------------------------------------- /services/comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/__init__.py -------------------------------------------------------------------------------- /services/comparison/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/changes.py -------------------------------------------------------------------------------- /services/comparison/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/conftest.py -------------------------------------------------------------------------------- /services/comparison/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/comparison/tests/unit/test_behind_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/tests/unit/test_behind_by.py -------------------------------------------------------------------------------- /services/comparison/tests/unit/test_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/tests/unit/test_changes.py -------------------------------------------------------------------------------- /services/comparison/tests/unit/test_comparison_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/tests/unit/test_comparison_proxy.py -------------------------------------------------------------------------------- /services/comparison/tests/unit/test_get_or_create_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/tests/unit/test_get_or_create_comparison.py -------------------------------------------------------------------------------- /services/comparison/tests/unit/test_reports_uploaded_count_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/tests/unit/test_reports_uploaded_count_diff.py -------------------------------------------------------------------------------- /services/comparison/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison/types.py -------------------------------------------------------------------------------- /services/comparison_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/comparison_utils.py -------------------------------------------------------------------------------- /services/decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/decoration.py -------------------------------------------------------------------------------- /services/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/encryption.py -------------------------------------------------------------------------------- /services/failure_normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/failure_normalizer.py -------------------------------------------------------------------------------- /services/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/github.py -------------------------------------------------------------------------------- /services/github_marketplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/github_marketplace.py -------------------------------------------------------------------------------- /services/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/license.py -------------------------------------------------------------------------------- /services/lock_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/lock_manager.py -------------------------------------------------------------------------------- /services/notification/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/__init__.py -------------------------------------------------------------------------------- /services/notification/commit_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/commit_notifications.py -------------------------------------------------------------------------------- /services/notification/notifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/__init__.py -------------------------------------------------------------------------------- /services/notification/notifiers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/base.py -------------------------------------------------------------------------------- /services/notification/notifiers/checks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/checks/__init__.py -------------------------------------------------------------------------------- /services/notification/notifiers/checks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/checks/base.py -------------------------------------------------------------------------------- /services/notification/notifiers/checks/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/checks/changes.py -------------------------------------------------------------------------------- /services/notification/notifiers/checks/checks_with_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/checks/checks_with_fallback.py -------------------------------------------------------------------------------- /services/notification/notifiers/checks/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/checks/patch.py -------------------------------------------------------------------------------- /services/notification/notifiers/checks/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/checks/project.py -------------------------------------------------------------------------------- /services/notification/notifiers/codecov_slack_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/codecov_slack_app.py -------------------------------------------------------------------------------- /services/notification/notifiers/comment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/comment/__init__.py -------------------------------------------------------------------------------- /services/notification/notifiers/comment/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/comment/conditions.py -------------------------------------------------------------------------------- /services/notification/notifiers/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/generics.py -------------------------------------------------------------------------------- /services/notification/notifiers/gitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/gitter.py -------------------------------------------------------------------------------- /services/notification/notifiers/hipchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/hipchat.py -------------------------------------------------------------------------------- /services/notification/notifiers/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/irc.py -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/message/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/mixins/message/__init__.py -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/message/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/mixins/message/helpers.py -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/message/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/mixins/message/sections.py -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/message/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/message/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/mixins/message/tests/test_helpers.py -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/message/writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/mixins/message/writers.py -------------------------------------------------------------------------------- /services/notification/notifiers/mixins/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/mixins/status.py -------------------------------------------------------------------------------- /services/notification/notifiers/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/slack.py -------------------------------------------------------------------------------- /services/notification/notifiers/status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/status/__init__.py -------------------------------------------------------------------------------- /services/notification/notifiers/status/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/status/base.py -------------------------------------------------------------------------------- /services/notification/notifiers/status/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/status/changes.py -------------------------------------------------------------------------------- /services/notification/notifiers/status/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/status/patch.py -------------------------------------------------------------------------------- /services/notification/notifiers/status/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/status/project.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/notification/notifiers/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/conftest.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify.yaml -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_gitlab.yaml -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_new_layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_new_layout.yaml -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_test_results_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_test_results_error.yaml -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_upgrade.yaml -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_upload_limited.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_upload_limited.yaml -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_with_components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/cassetes/test_comment/TestCommentNotifierIntegration/test_notify_with_components.yaml -------------------------------------------------------------------------------- /services/notification/notifiers/tests/integration/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/integration/test_comment.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_checks.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_codecov_slack_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_codecov_slack_app.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_comment.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_comment_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_comment_conditions.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_generics.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_gitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_gitter.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_hipchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_hipchat.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_irc.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_slack.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_status.py -------------------------------------------------------------------------------- /services/notification/notifiers/tests/unit/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/tests/unit/test_webhook.py -------------------------------------------------------------------------------- /services/notification/notifiers/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/notifiers/webhook.py -------------------------------------------------------------------------------- /services/notification/tests/unit/test_commit_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/tests/unit/test_commit_notifications.py -------------------------------------------------------------------------------- /services/notification/tests/unit/test_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/tests/unit/test_comparison.py -------------------------------------------------------------------------------- /services/notification/tests/unit/test_notification_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/tests/unit/test_notification_result.py -------------------------------------------------------------------------------- /services/notification/tests/unit/test_notification_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/notification/tests/unit/test_notification_service.py -------------------------------------------------------------------------------- /services/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/owner.py -------------------------------------------------------------------------------- /services/path_fixer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/__init__.py -------------------------------------------------------------------------------- /services/path_fixer/fixpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/fixpaths.py -------------------------------------------------------------------------------- /services/path_fixer/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/match.py -------------------------------------------------------------------------------- /services/path_fixer/tests/unit/test_fixpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/tests/unit/test_fixpaths.py -------------------------------------------------------------------------------- /services/path_fixer/tests/unit/test_path_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/tests/unit/test_path_fixer.py -------------------------------------------------------------------------------- /services/path_fixer/tests/unit/test_user_path_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/tests/unit/test_user_path_fixes.py -------------------------------------------------------------------------------- /services/path_fixer/tests/unit/test_user_path_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/tests/unit/test_user_path_includes.py -------------------------------------------------------------------------------- /services/path_fixer/user_path_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/user_path_fixes.py -------------------------------------------------------------------------------- /services/path_fixer/user_path_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/path_fixer/user_path_includes.py -------------------------------------------------------------------------------- /services/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/processing/flake_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/processing/flake_processing.py -------------------------------------------------------------------------------- /services/processing/intermediate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/processing/intermediate.py -------------------------------------------------------------------------------- /services/processing/merging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/processing/merging.py -------------------------------------------------------------------------------- /services/processing/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/processing/metrics.py -------------------------------------------------------------------------------- /services/processing/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/processing/processing.py -------------------------------------------------------------------------------- /services/processing/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/processing/state.py -------------------------------------------------------------------------------- /services/processing/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/processing/types.py -------------------------------------------------------------------------------- /services/report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/README.md -------------------------------------------------------------------------------- /services/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/__init__.py -------------------------------------------------------------------------------- /services/report/fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/fixes.py -------------------------------------------------------------------------------- /services/report/languages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/report/languages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/base.py -------------------------------------------------------------------------------- /services/report/languages/bullseye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/bullseye.py -------------------------------------------------------------------------------- /services/report/languages/clover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/clover.py -------------------------------------------------------------------------------- /services/report/languages/cobertura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/cobertura.py -------------------------------------------------------------------------------- /services/report/languages/coveralls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/coveralls.py -------------------------------------------------------------------------------- /services/report/languages/csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/csharp.py -------------------------------------------------------------------------------- /services/report/languages/dlst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/dlst.py -------------------------------------------------------------------------------- /services/report/languages/elm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/elm.py -------------------------------------------------------------------------------- /services/report/languages/flowcover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/flowcover.py -------------------------------------------------------------------------------- /services/report/languages/gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/gap.py -------------------------------------------------------------------------------- /services/report/languages/gcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/gcov.py -------------------------------------------------------------------------------- /services/report/languages/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/go.py -------------------------------------------------------------------------------- /services/report/languages/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/helpers.py -------------------------------------------------------------------------------- /services/report/languages/jacoco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/jacoco.py -------------------------------------------------------------------------------- /services/report/languages/jetbrainsxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/jetbrainsxml.py -------------------------------------------------------------------------------- /services/report/languages/lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/lcov.py -------------------------------------------------------------------------------- /services/report/languages/lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/lua.py -------------------------------------------------------------------------------- /services/report/languages/mono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/mono.py -------------------------------------------------------------------------------- /services/report/languages/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/node.py -------------------------------------------------------------------------------- /services/report/languages/pycoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/pycoverage.py -------------------------------------------------------------------------------- /services/report/languages/rlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/rlang.py -------------------------------------------------------------------------------- /services/report/languages/salesforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/salesforce.py -------------------------------------------------------------------------------- /services/report/languages/scala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/scala.py -------------------------------------------------------------------------------- /services/report/languages/scoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/scoverage.py -------------------------------------------------------------------------------- /services/report/languages/simplecov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/simplecov.py -------------------------------------------------------------------------------- /services/report/languages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/report/languages/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/__init__.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/ifbinary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/ifbinary.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/ifbinarymb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/ifbinarymb.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/inline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/inline.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/inlinehit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/inlinehit.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/node1-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/node1-result.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/node1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/node1.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/node2-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/node2-result.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/node2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/node2.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/node3-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/node3-result.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/node/node3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/node/node3.json -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_bullseye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_bullseye.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_clover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_clover.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_cobertura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_cobertura.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_coveralls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_coveralls.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_csharp.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_csharp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_csharp2.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_dlst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_dlst.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_flowcover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_flowcover.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_gap.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_gcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_gcov.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_go.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_jacoco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_jacoco.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_jetbrainsxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_jetbrainsxml.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_lcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_lcov.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_lua.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_node.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_pycoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_pycoverage.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_rlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_rlang.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_salesforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_salesforce.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_scala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_scala.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_scoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_scoverage.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_simplecov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_simplecov.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_v1.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_vb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_vb.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_vb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_vb2.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_xcode.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_xcode2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_xcode2.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/test_xcodeplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/test_xcodeplist.py -------------------------------------------------------------------------------- /services/report/languages/tests/unit/xccoverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/xccoverage.xml -------------------------------------------------------------------------------- /services/report/languages/tests/unit/xcodeplist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/tests/unit/xcodeplist.txt -------------------------------------------------------------------------------- /services/report/languages/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/v1.py -------------------------------------------------------------------------------- /services/report/languages/vb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/vb.py -------------------------------------------------------------------------------- /services/report/languages/vb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/vb2.py -------------------------------------------------------------------------------- /services/report/languages/xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/xcode.py -------------------------------------------------------------------------------- /services/report/languages/xcodeplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/languages/xcodeplist.py -------------------------------------------------------------------------------- /services/report/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/parser/__init__.py -------------------------------------------------------------------------------- /services/report/parser/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/parser/legacy.py -------------------------------------------------------------------------------- /services/report/parser/tests/unit/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/parser/tests/unit/test_parsers.py -------------------------------------------------------------------------------- /services/report/parser/tests/unit/test_version_one_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/parser/tests/unit/test_version_one_parser.py -------------------------------------------------------------------------------- /services/report/parser/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/parser/types.py -------------------------------------------------------------------------------- /services/report/parser/version_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/parser/version_one.py -------------------------------------------------------------------------------- /services/report/prometheus_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/prometheus_metrics.py -------------------------------------------------------------------------------- /services/report/raw_upload_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/raw_upload_processor.py -------------------------------------------------------------------------------- /services/report/report_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/report_builder.py -------------------------------------------------------------------------------- /services/report/report_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/report_processor.py -------------------------------------------------------------------------------- /services/report/tests/unit/report.v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/report.v3.json -------------------------------------------------------------------------------- /services/report/tests/unit/test_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/test_fixes.py -------------------------------------------------------------------------------- /services/report/tests/unit/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/test_parser.py -------------------------------------------------------------------------------- /services/report/tests/unit/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/test_process.py -------------------------------------------------------------------------------- /services/report/tests/unit/test_report_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/test_report_builder.py -------------------------------------------------------------------------------- /services/report/tests/unit/test_report_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/test_report_processor.py -------------------------------------------------------------------------------- /services/report/tests/unit/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/test_sessions.py -------------------------------------------------------------------------------- /services/report/tests/unit/test_transplant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/tests/unit/test_transplant.py -------------------------------------------------------------------------------- /services/report/transplant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/report/transplant.py -------------------------------------------------------------------------------- /services/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/repository.py -------------------------------------------------------------------------------- /services/seats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/seats.py -------------------------------------------------------------------------------- /services/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/smtp.py -------------------------------------------------------------------------------- /services/static_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/static_analysis/__init__.py -------------------------------------------------------------------------------- /services/static_analysis/git_diff_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/static_analysis/git_diff_parser.py -------------------------------------------------------------------------------- /services/static_analysis/single_file_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/static_analysis/single_file_analyzer.py -------------------------------------------------------------------------------- /services/static_analysis/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/static_analysis/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/static_analysis/tests/unit/test_git_diff_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/static_analysis/tests/unit/test_git_diff_parser.py -------------------------------------------------------------------------------- /services/static_analysis/tests/unit/test_single_file_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/static_analysis/tests/unit/test_single_file_analyzer.py -------------------------------------------------------------------------------- /services/static_analysis/tests/unit/test_static_analysis_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/static_analysis/tests/unit/test_static_analysis_comparison.py -------------------------------------------------------------------------------- /services/stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/stripe.py -------------------------------------------------------------------------------- /services/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/template.py -------------------------------------------------------------------------------- /services/test_analytics/ta_cache_rollups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/ta_cache_rollups.py -------------------------------------------------------------------------------- /services/test_analytics/ta_finish_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/ta_finish_upload.py -------------------------------------------------------------------------------- /services/test_analytics/ta_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/ta_metrics.py -------------------------------------------------------------------------------- /services/test_analytics/ta_process_flakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/ta_process_flakes.py -------------------------------------------------------------------------------- /services/test_analytics/ta_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/ta_processing.py -------------------------------------------------------------------------------- /services/test_analytics/ta_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/ta_processor.py -------------------------------------------------------------------------------- /services/test_analytics/ta_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/ta_timeseries.py -------------------------------------------------------------------------------- /services/test_analytics/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/conftest.py -------------------------------------------------------------------------------- /services/test_analytics/tests/samples/sample_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/samples/sample_test.json -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_cache_rollups__cache_test_rollups__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_cache_rollups__cache_test_rollups__0.json -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_cache_rollups__cache_test_rollups_use_timeseries_branch__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_cache_rollups__cache_test_rollups_use_timeseries_branch__0.json -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_cache_rollups__cache_test_rollups_use_timeseries_main__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_cache_rollups__cache_test_rollups_use_timeseries_main__0.json -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__0.txt -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__1.txt -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__2.txt -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__3.txt -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_finish_upload__ta_finish_upload__4.txt -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_process_flakes__testrun_filters__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_process_flakes__testrun_filters__0.json -------------------------------------------------------------------------------- /services/test_analytics/tests/snapshots/ta_processing__insert_testruns_timeseries__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/snapshots/ta_processing__insert_testruns_timeseries__0.json -------------------------------------------------------------------------------- /services/test_analytics/tests/test_ta_cache_rollups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/test_ta_cache_rollups.py -------------------------------------------------------------------------------- /services/test_analytics/tests/test_ta_finish_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/test_ta_finish_upload.py -------------------------------------------------------------------------------- /services/test_analytics/tests/test_ta_process_flakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/test_ta_process_flakes.py -------------------------------------------------------------------------------- /services/test_analytics/tests/test_ta_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/test_ta_processing.py -------------------------------------------------------------------------------- /services/test_analytics/tests/test_ta_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/test_ta_processor.py -------------------------------------------------------------------------------- /services/test_analytics/tests/test_ta_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/tests/test_ta_timeseries.py -------------------------------------------------------------------------------- /services/test_analytics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_analytics/utils.py -------------------------------------------------------------------------------- /services/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/test_results.py -------------------------------------------------------------------------------- /services/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/tests/cassetes/test_ai_pr_review/test_perform_duplicate_review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/cassetes/test_ai_pr_review/test_perform_duplicate_review.yaml -------------------------------------------------------------------------------- /services/tests/cassetes/test_ai_pr_review/test_perform_initial_review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/cassetes/test_ai_pr_review/test_perform_initial_review.yaml -------------------------------------------------------------------------------- /services/tests/cassetes/test_ai_pr_review/test_perform_new_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/cassetes/test_ai_pr_review/test_perform_new_commit.yaml -------------------------------------------------------------------------------- /services/tests/cassetes/test_bots/TestBotsService/test_get_owner_appropriate_bot_token_with_user_with_integration_bot_using_it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/cassetes/test_bots/TestBotsService/test_get_owner_appropriate_bot_token_with_user_with_integration_bot_using_it.yaml -------------------------------------------------------------------------------- /services/tests/cassetes/test_bots/TestBotsService/test_get_repo_appropriate_bot_token_repo_with_user_with_integration_bot_using_it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/cassetes/test_bots/TestBotsService/test_get_repo_appropriate_bot_token_repo_with_user_with_integration_bot_using_it.yaml -------------------------------------------------------------------------------- /services/tests/cassetes/test_bots/TestBotsService/testget_owner_appropriate_bot_token_with_user_with_integration_bot_using_it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/cassetes/test_bots/TestBotsService/testget_owner_appropriate_bot_token_with_user_with_integration_bot_using_it.yaml -------------------------------------------------------------------------------- /services/tests/cassetes/test_bots/TestBotsService/testget_repo_appropriate_bot_token_repo_with_user_with_integration_bot_using_it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/cassetes/test_bots/TestBotsService/testget_repo_appropriate_bot_token_repo_with_user_with_integration_bot_using_it.yaml -------------------------------------------------------------------------------- /services/tests/integration/cassetes/test_bots/TestRepositoryServiceIntegration/test_get_repo_appropriate_bot_token_bad_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/integration/cassetes/test_bots/TestRepositoryServiceIntegration/test_get_repo_appropriate_bot_token_bad_data.yaml -------------------------------------------------------------------------------- /services/tests/integration/cassetes/test_bots/TestRepositoryServiceIntegration/test_get_repo_appropriate_bot_token_non_existing_integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/integration/cassetes/test_bots/TestRepositoryServiceIntegration/test_get_repo_appropriate_bot_token_non_existing_integration.yaml -------------------------------------------------------------------------------- /services/tests/integration/cassetes/test_bots/TestRepositoryServiceIntegration/test_get_token_type_mapping_bad_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/integration/cassetes/test_bots/TestRepositoryServiceIntegration/test_get_token_type_mapping_bad_data.yaml -------------------------------------------------------------------------------- /services/tests/integration/cassetes/test_repository_service/TestRepositoryServiceIntegration/test_get_repo_provider_service_bitbucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/integration/cassetes/test_repository_service/TestRepositoryServiceIntegration/test_get_repo_provider_service_bitbucket.yaml -------------------------------------------------------------------------------- /services/tests/integration/cassetes/test_repository_service/TestRepositoryServiceIntegration/test_get_repo_provider_service_github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/integration/cassetes/test_repository_service/TestRepositoryServiceIntegration/test_get_repo_provider_service_github.yaml -------------------------------------------------------------------------------- /services/tests/integration/cassetes/test_repository_service/TestRepositoryServiceIntegration/test_get_repo_provider_service_gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/integration/cassetes/test_repository_service/TestRepositoryServiceIntegration/test_get_repo_provider_service_gitlab.yaml -------------------------------------------------------------------------------- /services/tests/integration/test_repository_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/integration/test_repository_service.py -------------------------------------------------------------------------------- /services/tests/test_activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_activation.py -------------------------------------------------------------------------------- /services/tests/test_ai_pr_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_ai_pr_review.py -------------------------------------------------------------------------------- /services/tests/test_billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_billing.py -------------------------------------------------------------------------------- /services/tests/test_commit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_commit_status.py -------------------------------------------------------------------------------- /services/tests/test_decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_decoration.py -------------------------------------------------------------------------------- /services/tests/test_failure_normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_failure_normalizer.py -------------------------------------------------------------------------------- /services/tests/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_github.py -------------------------------------------------------------------------------- /services/tests/test_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_license.py -------------------------------------------------------------------------------- /services/tests/test_owner_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_owner_service.py -------------------------------------------------------------------------------- /services/tests/test_processing_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_processing_state.py -------------------------------------------------------------------------------- /services/tests/test_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_redis.py -------------------------------------------------------------------------------- /services/tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_report.py -------------------------------------------------------------------------------- /services/tests/test_repository_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_repository_service.py -------------------------------------------------------------------------------- /services/tests/test_seats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_seats.py -------------------------------------------------------------------------------- /services/tests/test_smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_smtp.py -------------------------------------------------------------------------------- /services/tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_template.py -------------------------------------------------------------------------------- /services/tests/test_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_test_results.py -------------------------------------------------------------------------------- /services/tests/test_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_timeseries.py -------------------------------------------------------------------------------- /services/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/test_urls.py -------------------------------------------------------------------------------- /services/tests/unit/test_archive_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/unit/test_archive_service.py -------------------------------------------------------------------------------- /services/tests/unit/test_bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/tests/unit/test_bots.py -------------------------------------------------------------------------------- /services/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/timeseries.py -------------------------------------------------------------------------------- /services/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/urls.py -------------------------------------------------------------------------------- /services/yaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/__init__.py -------------------------------------------------------------------------------- /services/yaml/fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/fetcher.py -------------------------------------------------------------------------------- /services/yaml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/parser.py -------------------------------------------------------------------------------- /services/yaml/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/reader.py -------------------------------------------------------------------------------- /services/yaml/tests/samples/big.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/tests/samples/big.yaml -------------------------------------------------------------------------------- /services/yaml/tests/samples/sample_yaml_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/tests/samples/sample_yaml_1.yaml -------------------------------------------------------------------------------- /services/yaml/tests/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/tests/test_yaml.py -------------------------------------------------------------------------------- /services/yaml/tests/test_yaml_fetching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/tests/test_yaml_fetching.py -------------------------------------------------------------------------------- /services/yaml/tests/test_yaml_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/tests/test_yaml_parsing.py -------------------------------------------------------------------------------- /services/yaml/tests/test_yaml_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/tests/test_yaml_reader.py -------------------------------------------------------------------------------- /services/yaml/tests/test_yaml_saving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/services/yaml/tests/test_yaml_saving.py -------------------------------------------------------------------------------- /ta_storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ta_storage/pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/ta_storage/pg.py -------------------------------------------------------------------------------- /ta_storage/tests/test_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/ta_storage/tests/test_pg.py -------------------------------------------------------------------------------- /tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/README.md -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/activate_account_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/activate_account_user.py -------------------------------------------------------------------------------- /tasks/ai_pr_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/ai_pr_review.py -------------------------------------------------------------------------------- /tasks/backfill_existing_gh_app_installations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/backfill_existing_gh_app_installations.py -------------------------------------------------------------------------------- /tasks/backfill_owners_without_gh_app_installations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/backfill_owners_without_gh_app_installations.py -------------------------------------------------------------------------------- /tasks/backfill_test_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/backfill_test_instances.py -------------------------------------------------------------------------------- /tasks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/base.py -------------------------------------------------------------------------------- /tasks/brolly_stats_rollup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/brolly_stats_rollup.py -------------------------------------------------------------------------------- /tasks/bundle_analysis_notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/bundle_analysis_notify.py -------------------------------------------------------------------------------- /tasks/bundle_analysis_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/bundle_analysis_processor.py -------------------------------------------------------------------------------- /tasks/bundle_analysis_save_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/bundle_analysis_save_measurements.py -------------------------------------------------------------------------------- /tasks/cache_rollup_cron_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/cache_rollup_cron_task.py -------------------------------------------------------------------------------- /tasks/cache_test_rollups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/cache_test_rollups.py -------------------------------------------------------------------------------- /tasks/cache_test_rollups_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/cache_test_rollups_redis.py -------------------------------------------------------------------------------- /tasks/commit_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/commit_update.py -------------------------------------------------------------------------------- /tasks/compute_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/compute_comparison.py -------------------------------------------------------------------------------- /tasks/compute_component_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/compute_component_comparison.py -------------------------------------------------------------------------------- /tasks/crontasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/crontasks.py -------------------------------------------------------------------------------- /tasks/delete_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/delete_owner.py -------------------------------------------------------------------------------- /tasks/flare_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/flare_cleanup.py -------------------------------------------------------------------------------- /tasks/flush_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/flush_repo.py -------------------------------------------------------------------------------- /tasks/github_app_webhooks_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/github_app_webhooks_check.py -------------------------------------------------------------------------------- /tasks/github_marketplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/github_marketplace.py -------------------------------------------------------------------------------- /tasks/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/health_check.py -------------------------------------------------------------------------------- /tasks/hourly_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/hourly_check.py -------------------------------------------------------------------------------- /tasks/http_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/http_request.py -------------------------------------------------------------------------------- /tasks/label_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/label_analysis.py -------------------------------------------------------------------------------- /tasks/manual_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/manual_trigger.py -------------------------------------------------------------------------------- /tasks/new_user_activated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/new_user_activated.py -------------------------------------------------------------------------------- /tasks/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/notify.py -------------------------------------------------------------------------------- /tasks/notify_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/notify_error.py -------------------------------------------------------------------------------- /tasks/plan_manager_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/plan_manager_task.py -------------------------------------------------------------------------------- /tasks/preprocess_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/preprocess_upload.py -------------------------------------------------------------------------------- /tasks/process_flakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/process_flakes.py -------------------------------------------------------------------------------- /tasks/regular_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/regular_cleanup.py -------------------------------------------------------------------------------- /tasks/save_commit_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/save_commit_measurements.py -------------------------------------------------------------------------------- /tasks/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/send_email.py -------------------------------------------------------------------------------- /tasks/static_analysis_suite_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/static_analysis_suite_check.py -------------------------------------------------------------------------------- /tasks/status_set_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/status_set_error.py -------------------------------------------------------------------------------- /tasks/status_set_pending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/status_set_pending.py -------------------------------------------------------------------------------- /tasks/sync_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/sync_pull.py -------------------------------------------------------------------------------- /tasks/sync_repo_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/sync_repo_languages.py -------------------------------------------------------------------------------- /tasks/sync_repo_languages_gql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/sync_repo_languages_gql.py -------------------------------------------------------------------------------- /tasks/sync_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/sync_repos.py -------------------------------------------------------------------------------- /tasks/sync_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/sync_teams.py -------------------------------------------------------------------------------- /tasks/test_results_finisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/test_results_finisher.py -------------------------------------------------------------------------------- /tasks/test_results_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/test_results_processor.py -------------------------------------------------------------------------------- /tasks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_cancelled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_cancelled.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_purchase_by_existing_owner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_purchase_by_existing_owner.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_purchase_listing_not_found.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_purchase_listing_not_found.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_purchase_new_owner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_purchase_new_owner.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_sync_all_plans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_ghm_sync_plans/TestGHMarketplaceSyncPlansTask/test_sync_all_plans.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_http_request_task/TestHTTPRequestTask/test_http_request_run_async_200.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_http_request_task/TestHTTPRequestTask/test_http_request_run_async_200.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_http_request_task/TestHTTPRequestTask/test_http_request_run_async_400.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_http_request_task/TestHTTPRequestTask/test_http_request_run_async_400.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_http_request_task/TestHTTPRequestTask/test_http_request_run_async_500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_http_request_task/TestHTTPRequestTask/test_http_request_run_async_500.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_notifier_call_no_head_commit_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_notifier_call_no_head_commit_report.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_no_notifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_no_notifiers.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_only_status_notifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_only_status_notifiers.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_only_status_notifiers_no_pull_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_only_status_notifiers_no_pull_request.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_only_status_notifiers_with_pull_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_only_status_notifiers_with_pull_request.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_status_and_notifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_notify_task/TestNotifyTask/test_simple_call_status_and_notifiers.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_status_set_error_task/TestStatusSetErrorTask/test_set_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_status_set_error_task/TestStatusSetErrorTask/test_set_error.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_status_set_pending_task/TestStatusSetPendingTask/test_set_pending.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_status_set_pending_task/TestStatusSetPendingTask/test_set_pending.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/cassetes/test_sync_pull/TestPullSyncTask/test_call_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/cassetes/test_sync_pull/TestPullSyncTask/test_call_task.yaml -------------------------------------------------------------------------------- /tasks/tests/integration/test_ai_pr_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_ai_pr_review.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_ghm_sync_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_ghm_sync_plans.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_http_request_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_http_request_task.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_notify_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_notify_task.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_send_email_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_send_email_task.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_status_set_error_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_status_set_error_task.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_status_set_pending_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_status_set_pending_task.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_sync_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_sync_pull.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_timeseries_backfill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_timeseries_backfill.py -------------------------------------------------------------------------------- /tasks/tests/integration/test_upload_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/integration/test_upload_e2e.py -------------------------------------------------------------------------------- /tasks/tests/samples/sample_chunks_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_chunks_1.txt -------------------------------------------------------------------------------- /tasks/tests/samples/sample_chunks_4_sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_chunks_4_sessions.txt -------------------------------------------------------------------------------- /tasks/tests/samples/sample_chunks_with_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_chunks_with_header.txt -------------------------------------------------------------------------------- /tasks/tests/samples/sample_multi_test_part_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_multi_test_part_1.json -------------------------------------------------------------------------------- /tasks/tests/samples/sample_multi_test_part_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_multi_test_part_2.json -------------------------------------------------------------------------------- /tasks/tests/samples/sample_ta_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_ta_file.xml -------------------------------------------------------------------------------- /tasks/tests/samples/sample_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_test.json -------------------------------------------------------------------------------- /tasks/tests/samples/sample_test_missing_network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_test_missing_network.json -------------------------------------------------------------------------------- /tasks/tests/samples/sample_test_network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_test_network.json -------------------------------------------------------------------------------- /tasks/tests/samples/sample_uploaded_report_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/samples/sample_uploaded_report_1.txt -------------------------------------------------------------------------------- /tasks/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_add_to_list_invalid_list_with_list_type.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_add_to_list_invalid_owner.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_add_to_list_invalid_owner_no_list_type.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_add_to_list_no_list.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_end_of_trial_email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_end_of_trial_email.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_new_oauthed_users_email_with_email_type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_new_oauthed_users_email_with_email_type.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_new_oauthed_users_email_with_list_type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_add_to_sendgrid_list/TestAddToSendgridListTask/test_new_oauthed_users_email_with_list_type.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_commit_update/TestCommitUpdate/test_update_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_commit_update/TestCommitUpdate/test_update_commit.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_end_of_trial_email_with_email_type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_end_of_trial_email_with_email_type.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_end_of_trial_email_with_list_type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_end_of_trial_email_with_list_type.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_send_email_invalid_list_with_email_type.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_send_email_invalid_list_with_list_type.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_send_email_invalid_owner.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_send_email_invalid_owner_no_list_type.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_send_email/TestSendEmailTask/test_send_email_no_list.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_only_public_repos_already_in_db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_only_public_repos_already_in_db.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_only_public_repos_not_in_db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_only_public_repos_not_in_db.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_private_repos_set_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_private_repos_set_bot.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_set_bot_gitlab_subgroups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_set_bot_gitlab_subgroups.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_sync_repos_using_integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_sync_repos_using_integration.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_sync_repos_using_integration_no_repos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_sync_repos_using_integration_no_repos.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_sync_repos_with_feature_flag_django_call.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_repos_task/TestSyncReposTaskUnit/test_sync_repos_with_feature_flag_django_call.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_gitlab_subgroups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_gitlab_subgroups.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_no_teams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_no_teams.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_team_data_updated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_team_data_updated.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_team_removed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_sync_teams_task/TestSyncTeamsTaskUnit/test_team_removed.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_finisher_task/TestUploadFinisherTask/test_upload_finisher_task_call.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_processor_task_call.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_processor_task_call.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_processor_task_call_should_delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_processor_task_call_should_delete.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_task_call.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_task_call.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_task_call_exception_within_individual_upload.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_task_call_existing_chunks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_task_call_existing_chunks.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_task_call_with_try_later.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_processing_task/TestUploadProcessorTask/test_upload_task_call_with_try_later.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_bundle_analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_bundle_analysis.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_bundle_analysis_no_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_bundle_analysis_no_upload.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_multiple_processors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_multiple_processors.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_no_jobs.yaml: -------------------------------------------------------------------------------- 1 | interactions: [] 2 | version: 1 3 | -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_test_results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_call_test_results.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_proper_parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/cassetes/test_upload_task/TestUploadTaskIntegration/test_upload_task_proper_parent.yaml -------------------------------------------------------------------------------- /tasks/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/conftest.py -------------------------------------------------------------------------------- /tasks/tests/unit/samples/sample_opentelem_collected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/samples/sample_opentelem_collected.json -------------------------------------------------------------------------------- /tasks/tests/unit/samples/sample_opentelem_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/samples/sample_opentelem_input.json -------------------------------------------------------------------------------- /tasks/tests/unit/samples/sample_opentelem_normalized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/samples/sample_opentelem_normalized.json -------------------------------------------------------------------------------- /tasks/tests/unit/snapshots/cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/snapshots/cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries__0.json -------------------------------------------------------------------------------- /tasks/tests/unit/snapshots/cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries_branch__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/snapshots/cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries_branch__0.json -------------------------------------------------------------------------------- /tasks/tests/unit/snapshots/cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries_main__0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/snapshots/cache_test_rollups__TestCacheTestRollupsTask__cache_test_rollups_use_timeseries_main__0.json -------------------------------------------------------------------------------- /tasks/tests/unit/test_activate_account_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_activate_account_user.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_backfill_existing_gh_app_installations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_backfill_existing_gh_app_installations.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_backfill_owners_without_gh_app_installations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_backfill_owners_without_gh_app_installations.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_base.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_brolly_stats_rollup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_brolly_stats_rollup.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_bundle_analysis_notify_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_bundle_analysis_notify_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_bundle_analysis_processor_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_bundle_analysis_processor_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_bundle_analysis_save_measurements_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_bundle_analysis_save_measurements_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_cache_rollup_cron_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_cache_rollup_cron_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_cache_test_rollups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_cache_test_rollups.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_cache_test_rollups_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_cache_test_rollups_redis.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_check_static_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_check_static_analysis.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_commit_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_commit_update.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_compute_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_compute_comparison.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_crontasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_crontasks.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_delete_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_delete_owner.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_flare_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_flare_cleanup.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_flush_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_flush_repo.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_ghm_sync_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_ghm_sync_plans.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_github_app_webhooks_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_github_app_webhooks_check.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_healthcheck_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_healthcheck_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_hourly_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_hourly_check.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_label_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_label_analysis.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_label_analysis_encoded_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_label_analysis_encoded_labels.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_manual_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_manual_trigger.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_new_user_activated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_new_user_activated.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_notify_error_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_notify_error_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_notify_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_notify_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_planmanager_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_planmanager_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_preprocess_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_preprocess_upload.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_process_flakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_process_flakes.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_save_commit_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_save_commit_measurements.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_send_email_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_send_email_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_status_set_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_status_set_error.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_status_set_pending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_status_set_pending.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_sync_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_sync_pull.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_sync_repo_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_sync_repo_languages.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_sync_repo_languages_gql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_sync_repo_languages_gql.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_sync_repos_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_sync_repos_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_sync_teams_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_sync_teams_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_test_results_finisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_test_results_finisher.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_test_results_processor_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_test_results_processor_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_timeseries_backfill_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_timeseries_backfill_commits.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_timeseries_backfill_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_timeseries_backfill_dataset.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_timeseries_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_timeseries_delete.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_trial_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_trial_expiration.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_trial_expiration_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_trial_expiration_cron.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_upload_finisher_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_upload_finisher_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_upload_processing_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_upload_processing_task.py -------------------------------------------------------------------------------- /tasks/tests/unit/test_upload_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/unit/test_upload_task.py -------------------------------------------------------------------------------- /tasks/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/tests/utils.py -------------------------------------------------------------------------------- /tasks/timeseries_backfill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/timeseries_backfill.py -------------------------------------------------------------------------------- /tasks/timeseries_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/timeseries_delete.py -------------------------------------------------------------------------------- /tasks/transplant_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/transplant_report.py -------------------------------------------------------------------------------- /tasks/trial_expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/trial_expiration.py -------------------------------------------------------------------------------- /tasks/trial_expiration_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/trial_expiration_cron.py -------------------------------------------------------------------------------- /tasks/update_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/update_branches.py -------------------------------------------------------------------------------- /tasks/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/upload.py -------------------------------------------------------------------------------- /tasks/upload_finisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/upload_finisher.py -------------------------------------------------------------------------------- /tasks/upload_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/upload_processor.py -------------------------------------------------------------------------------- /tasks/upsert_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tasks/upsert_component.py -------------------------------------------------------------------------------- /templates/auto-refund.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/auto-refund.html -------------------------------------------------------------------------------- /templates/auto-refund.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/auto-refund.txt -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/failed-payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/failed-payment.html -------------------------------------------------------------------------------- /templates/failed-payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/failed-payment.txt -------------------------------------------------------------------------------- /templates/success-after-failed-payment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/success-after-failed-payment.html -------------------------------------------------------------------------------- /templates/success-after-failed-payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/success-after-failed-payment.txt -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/templates/test.html -------------------------------------------------------------------------------- /templates/test.txt: -------------------------------------------------------------------------------- 1 | Test template {{ username }} -------------------------------------------------------------------------------- /test_utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/test_utils/base.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/services/notification/notifiers/comment/test_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tests/services/notification/notifiers/comment/test_conditions.py -------------------------------------------------------------------------------- /tests/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tests/test_debug.py -------------------------------------------------------------------------------- /tests/unit/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tests/unit/test_main.py -------------------------------------------------------------------------------- /tests/unit/test_task_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/tests/unit/test_task_router.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/uv.lock -------------------------------------------------------------------------------- /worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/worker/HEAD/worker.sh --------------------------------------------------------------------------------