├── .deep-dive.yaml ├── .dockerignore ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── 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 ├── .gitmodules ├── .pre-commit-config.yaml ├── LICENSE.md ├── Makefile ├── README.md ├── VERSION ├── api ├── __init__.py ├── apps.py ├── gen_ai │ ├── __init__.py │ ├── serializers.py │ ├── tests │ │ └── test_gen_ai.py │ ├── urls.py │ └── views.py ├── internal │ ├── branch │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ ├── chart │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── helpers.py │ │ ├── urls.py │ │ └── views.py │ ├── commit │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ ├── compare │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ ├── constants.py │ ├── coverage │ │ ├── __init__.py │ │ └── views.py │ ├── enterprise_urls.py │ ├── feature │ │ ├── helpers.py │ │ ├── serializers.py │ │ └── views.py │ ├── license │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── owner │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ ├── pull │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ ├── repo │ │ ├── __init__.py │ │ ├── filter.py │ │ ├── serializers.py │ │ └── views.py │ ├── self_hosted │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── permissions.py │ │ ├── serializers.py │ │ └── views.py │ ├── slack │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── urls.py │ │ └── views.py │ ├── tests │ │ ├── __init__.py │ │ ├── samples │ │ │ ├── 00c7b4b49778b3c79427f9c4c13a8612a376ff19_chunks.txt │ │ │ ├── 00c7b4b49778b3c79427f9c4c13a8612a376ff19_report.json │ │ │ ├── 68946ef98daec68c7798459150982fc799c87d85_chunks.txt │ │ │ ├── 68946ef98daec68c7798459150982fc799c87d85_report.json │ │ │ ├── 9sa8790asdf9agyasdg7a90sd9f89as7ga0sdf98a_chunks.txt │ │ │ ├── get_commit_diff-response.json │ │ │ └── report-field-example.json │ │ ├── test_charts.py │ │ ├── test_feature.py │ │ ├── test_pagination.py │ │ ├── test_permissions.py │ │ ├── test_repo_accessors.py │ │ ├── test_utils.py │ │ ├── test_views.py │ │ ├── unit │ │ │ └── views │ │ │ │ ├── cassetes │ │ │ │ ├── test_compare_file_view │ │ │ │ │ └── TestCompareSingleFileChangesView │ │ │ │ │ │ ├── test_compare_file_src_accepts_pullid_query_parameter.yaml │ │ │ │ │ │ ├── test_fetch_file_cov_decrease___success.yaml │ │ │ │ │ │ ├── test_fetch_file_with_diff_change.yaml │ │ │ │ │ │ └── test_fetch_file_with_filename_change.yaml │ │ │ │ └── test_compare_view │ │ │ │ │ └── TestCompareDetailsView │ │ │ │ │ └── test_compare_line_coverage_view.yaml │ │ │ │ ├── test_compare_flags_view.py │ │ │ │ └── test_compare_view.py │ │ └── views │ │ │ ├── cassetes │ │ │ └── test_account_viewset │ │ │ │ └── AccountViewSetTests │ │ │ │ ├── test_update_billing_address.yaml │ │ │ │ ├── test_update_handles_stripe_error.yaml │ │ │ │ ├── test_update_must_fail_if_team_plan_and_too_many_users.yaml │ │ │ │ ├── test_update_payment_method.yaml │ │ │ │ ├── test_update_quantity_must_be_greater_or_equal_to_current_activated_users_if_paid_plan.yaml │ │ │ │ ├── test_update_sentry_plan_annual.yaml │ │ │ │ ├── test_update_sentry_plan_annual_with_users_org.yaml │ │ │ │ ├── test_update_sentry_plan_monthly.yaml │ │ │ │ ├── test_update_sentry_plan_monthly_with_users_org.yaml │ │ │ │ └── test_update_team_plan_must_fail_if_currently_team_plan_add_too_many_users.yaml │ │ │ ├── test_account_viewset.py │ │ │ ├── test_compare_viewset.py │ │ │ ├── test_coverage_viewset.py │ │ │ ├── test_current_user_view.py │ │ │ ├── test_license_view.py │ │ │ ├── test_owner_viewset.py │ │ │ ├── test_repo_view.py │ │ │ ├── test_self_hosted_settings_viewset.py │ │ │ ├── test_self_hosted_user_viewset.py │ │ │ ├── test_slack_view.py │ │ │ └── test_user_viewset.py │ ├── urls.py │ └── user │ │ ├── serializers.py │ │ └── views.py ├── public │ ├── __init__.py │ ├── v1 │ │ ├── __init__.py │ │ ├── permissions.py │ │ ├── serializers.py │ │ ├── tests │ │ │ └── views │ │ │ │ └── test_pull_viewset.py │ │ ├── urls.py │ │ └── views.py │ └── v2 │ │ ├── __init__.py │ │ ├── branch │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── commit │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── compare │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── component │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── coverage │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── flag │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── owner │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── pull │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── repo │ │ ├── __init__.py │ │ ├── permissions.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── report │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── schema.py │ │ ├── test_results │ │ ├── __init__.py │ │ ├── serializers.py │ │ └── views.py │ │ ├── tests │ │ ├── test_api_branch_viewset.py │ │ ├── test_api_commit_viewset.py │ │ ├── test_api_compare_viewset.py │ │ ├── test_api_component_viewset.py │ │ ├── test_api_coverage_viewset.py │ │ ├── test_api_owner_viewset.py │ │ ├── test_api_pull_viewset.py │ │ ├── test_api_repo_config.py │ │ ├── test_api_repo_viewset.py │ │ ├── test_file_report_viewset.py │ │ ├── test_flag_viewset.py │ │ ├── test_owners_view.py │ │ ├── test_report_tree.py │ │ ├── test_report_viewset.py │ │ ├── test_test_results_view.py │ │ └── test_totals_viewset.py │ │ └── urls.py └── shared │ ├── branch │ ├── __init__.py │ ├── filters.py │ └── mixins.py │ ├── commit │ ├── __init__.py │ ├── filters.py │ ├── mixins.py │ └── serializers.py │ ├── compare │ ├── __init__.py │ ├── mixins.py │ └── serializers.py │ ├── error_views.py │ ├── mixins.py │ ├── owner │ ├── filters.py │ └── mixins.py │ ├── pagination.py │ ├── permissions.py │ ├── pull │ ├── __init__.py │ └── mixins.py │ ├── repo │ ├── filter.py │ ├── mixins.py │ └── repository_accessors.py │ ├── report │ ├── __init__.py │ └── serializers.py │ └── serializers.py ├── billing ├── __init__.py ├── apps.py ├── constants.py ├── helpers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20220118_1232.py │ ├── 0003_delete_account.py │ └── __init__.py ├── tests │ ├── __init__.py │ ├── test_helpers.py │ └── test_views.py ├── urls.py └── views.py ├── ci.yml ├── codecov.yml ├── codecov ├── __init__.py ├── admin.py ├── commands │ ├── __init__.py │ ├── base.py │ ├── exceptions.py │ ├── executor.py │ └── tests │ │ ├── __init__.py │ │ ├── test_base.py │ │ └── test_executor.py ├── db │ └── __init__.py ├── forms.py ├── models.py ├── settings_base.py ├── settings_dev.py ├── settings_enterprise.py ├── settings_prod.py ├── settings_staging.py ├── settings_test.py ├── static │ └── __init__.py ├── tests │ ├── __init__.py │ ├── base_test.py │ ├── test_urls.py │ └── test_views.py ├── urls.py ├── views.py └── wsgi.py ├── codecov_auth ├── __init__.py ├── admin.py ├── apps.py ├── authentication │ ├── __init__.py │ ├── helpers.py │ ├── repo_auth.py │ └── types.py ├── commands │ ├── __init__.py │ └── owner │ │ ├── __init__.py │ │ ├── interactors │ │ ├── __init__.py │ │ ├── cancel_trial.py │ │ ├── create_api_token.py │ │ ├── create_stripe_setup_intent.py │ │ ├── create_user_token.py │ │ ├── delete_session.py │ │ ├── fetch_owner.py │ │ ├── get_is_current_user_an_admin.py │ │ ├── get_org_upload_token.py │ │ ├── get_uploads_number_per_user.py │ │ ├── is_syncing.py │ │ ├── onboard_user.py │ │ ├── regenerate_org_upload_token.py │ │ ├── revoke_user_token.py │ │ ├── save_okta_config.py │ │ ├── save_terms_agreement.py │ │ ├── set_upload_token_required.py │ │ ├── set_yaml_on_owner.py │ │ ├── start_trial.py │ │ ├── store_codecov_metric.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_cancel_trial.py │ │ │ ├── test_create_api_token.py │ │ │ ├── test_create_user_token.py │ │ │ ├── test_delete_session.py │ │ │ ├── test_get_is_current_user_an_admin.py │ │ │ ├── test_get_org_upload_token.py │ │ │ ├── test_get_uploads_number_per_user.py │ │ │ ├── test_is_syncing.py │ │ │ ├── test_onboard_user.py │ │ │ ├── test_regenerate_org_upload_token.py │ │ │ ├── test_revoke_user_token.py │ │ │ ├── test_save_okta_config.py │ │ │ ├── test_save_terms_agreement.py │ │ │ ├── test_set_upload_token_required.py │ │ │ ├── test_set_yaml_on_owner.py │ │ │ ├── test_start_trial.py │ │ │ ├── test_trigger_sync.py │ │ │ ├── test_update_default_organization.py │ │ │ ├── test_update_profile.py │ │ │ └── test_update_self_hosted_settings.py │ │ ├── trigger_sync.py │ │ ├── update_default_organization.py │ │ ├── update_profile.py │ │ └── update_self_hosted_settings.py │ │ ├── owner.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_owner.py ├── constants.py ├── helpers.py ├── managers.py ├── middleware.py ├── models.py ├── permissions.py ├── services │ └── org_level_token_service.py ├── signals.py ├── templates │ └── admin │ │ └── extend_trial_form.html ├── tests │ ├── __init__.py │ ├── factories.py │ ├── test_admin.py │ ├── test_migrations.py │ ├── test_signals.py │ └── unit │ │ ├── __init__.py │ │ ├── services │ │ └── test_org_level_token_service.py │ │ ├── test_authentication.py │ │ ├── test_helpers.py │ │ ├── test_managers.py │ │ ├── test_middleware.py │ │ ├── test_repo_authentication.py │ │ └── views │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_bitbucket.py │ │ ├── test_bitbucket_server.py │ │ ├── test_github.py │ │ ├── test_github_enterprise.py │ │ ├── test_gitlab.py │ │ ├── test_gitlab_enterprise.py │ │ ├── test_logout.py │ │ ├── test_okta.py │ │ ├── test_okta_cloud.py │ │ ├── test_okta_mixin.py │ │ └── test_sentry.py ├── urls.py └── views │ ├── __init__.py │ ├── base.py │ ├── bitbucket.py │ ├── bitbucket_server.py │ ├── github.py │ ├── github_enterprise.py │ ├── gitlab.py │ ├── gitlab_enterprise.py │ ├── logout.py │ ├── okta.py │ ├── okta_cloud.py │ ├── okta_mixin.py │ └── sentry.py ├── compare ├── __init__.py ├── admin.py ├── commands │ ├── __init__.py │ └── compare │ │ ├── __init__.py │ │ ├── compare.py │ │ └── interactors │ │ ├── __init__.py │ │ ├── fetch_impacted_files.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_fetch_impacted_files.py ├── models.py └── tests │ ├── __init__.py │ ├── factories.py │ └── test_admin.py ├── conftest.py ├── core ├── __init__.py ├── admin.py ├── apps.py ├── commands │ ├── __init__.py │ ├── branch │ │ ├── __init__.py │ │ ├── branch.py │ │ ├── interactors │ │ │ ├── __init__.py │ │ │ ├── fetch_branch.py │ │ │ ├── fetch_branches.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_fetch_branch.py │ │ │ │ └── test_fetch_branches.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_branch.py │ ├── commit │ │ ├── __init__.py │ │ ├── commit.py │ │ ├── interactors │ │ │ ├── __init__.py │ │ │ ├── fetch_totals.py │ │ │ ├── get_commit_errors.py │ │ │ ├── get_file_content.py │ │ │ ├── get_final_yaml.py │ │ │ ├── get_latest_upload_error.py │ │ │ ├── get_uploads_number.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_get_commits_errors.py │ │ │ │ ├── test_get_file_content.py │ │ │ │ ├── test_get_final_yaml.py │ │ │ │ ├── test_get_latest_upload_error.py │ │ │ │ └── test_get_uploads_number.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_commit.py │ ├── component │ │ ├── __init__.py │ │ ├── component.py │ │ ├── interactors │ │ │ ├── __init__.py │ │ │ └── delete_component_measurements.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_component.py │ ├── flag │ │ ├── __init__.py │ │ ├── flag.py │ │ ├── interactors │ │ │ ├── __init__.py │ │ │ └── delete_flag.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_flag.py │ ├── pull │ │ ├── __init__.py │ │ ├── interactors │ │ │ ├── __init__.py │ │ │ ├── fetch_pull_request.py │ │ │ ├── fetch_pull_requests.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_fetch_pull_request.py │ │ │ │ └── test_fetch_pull_requests.py │ │ ├── pull.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_pull.py │ └── repository │ │ ├── __init__.py │ │ ├── interactors │ │ ├── __init__.py │ │ ├── activate_measurements.py │ │ ├── encode_secret_string.py │ │ ├── erase_repository.py │ │ ├── fetch_repository.py │ │ ├── get_repository_token.py │ │ ├── get_upload_token.py │ │ ├── regenerate_repository_token.py │ │ ├── regenerate_repository_upload_token.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_activate_measurements.py │ │ │ ├── test_encode_secret_string.py │ │ │ ├── test_erase_repository.py │ │ │ ├── test_fetch_repository.py │ │ │ ├── test_get_repository_token.py │ │ │ ├── test_get_upload_token.py │ │ │ ├── test_regenerate_repository_token.py │ │ │ ├── test_update_bundle_cache_config.py │ │ │ └── test_update_repository.py │ │ ├── update_bundle_cache_config.py │ │ ├── update_repository.py │ │ └── utils.py │ │ ├── repository.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_repository.py ├── encoders.py ├── management │ └── commands │ │ ├── check_for_migration_conflicts.py │ │ ├── codecovPlans-Jan25.csv │ │ ├── codecovTiers-Jan25.csv │ │ ├── delete_rate_limit_keys.py │ │ ├── insert_data_to_db_from_csv.py │ │ └── update_gitlab_webhooks.py ├── middleware.py ├── models.py ├── permissions.py ├── signals.py └── tests │ ├── __init__.py │ ├── test_admin.py │ ├── test_management_commands.py │ ├── test_managers.py │ ├── test_middleware.py │ └── test_signals.py ├── dev.sh ├── development.yml ├── docker-compose.yml ├── docker ├── Dockerfile ├── Dockerfile-proxy ├── Dockerfile.requirements ├── codecov.yml ├── frpc-entrypoint.sh ├── frpc.ini └── test.yml ├── enterprise.sh ├── graphql_api ├── __init__.py ├── actions │ ├── commits.py │ ├── comparison.py │ ├── components.py │ ├── flags.py │ ├── measurements.py │ ├── owner.py │ ├── path_contents.py │ └── repository.py ├── apps.py ├── dataloader │ ├── bundle_analysis.py │ ├── commit.py │ ├── comparison.py │ ├── loader.py │ ├── owner.py │ └── tests │ │ ├── test_bundle_analysis.py │ │ ├── test_commit.py │ │ ├── test_comparison.py │ │ ├── test_loader.py │ │ └── test_owner.py ├── helpers │ ├── __init__.py │ ├── ariadne.py │ ├── connection.py │ ├── lookahead.py │ ├── mutation.py │ ├── requested_fields.py │ └── tests │ │ ├── __init__.py │ │ ├── test_connection.py │ │ └── test_mutation.py ├── schema.py ├── tests │ ├── __init__.py │ ├── actions │ │ └── test_commits.py │ ├── helper.py │ ├── mutation │ │ ├── test_activate_measurements.py │ │ ├── test_cancel_trial.py │ │ ├── test_create_api_token.py │ │ ├── test_create_stripe_setup_intent.py │ │ ├── test_create_user_token.py │ │ ├── test_delete_component_measurements.py │ │ ├── test_delete_flag.py │ │ ├── test_delete_session.py │ │ ├── test_encode_secret_string.py │ │ ├── test_erase_repository.py │ │ ├── test_regenerate_repository_token.py │ │ ├── test_regenerate_repository_upload_token.py │ │ ├── test_regenrate_org_upload_token.py │ │ ├── test_revoke_user_token.py │ │ ├── test_save_okta_config.py │ │ ├── test_save_sentry_state.py │ │ ├── test_save_terms_agreement.py │ │ ├── test_set_upload_token_required.py │ │ ├── test_set_yaml_on_owner.py │ │ ├── test_start_trial.py │ │ ├── test_store_codecov_metrics.py │ │ ├── test_update_bundle_cache_config.py │ │ ├── test_update_default_organization.py │ │ ├── test_update_profile.py │ │ ├── test_update_repository.py │ │ └── test_update_self_hosted_settings.py │ ├── snapshots │ │ ├── analytics__TestAnalyticsTestCase__analytics_flag_filter__0.json │ │ ├── analytics__TestAnalyticsTestCase__analytics_term_filter__0.json │ │ ├── analytics__TestAnalyticsTestCase__analytics_testsuite_filter__0.json │ │ ├── analytics__TestAnalyticsTestCase__gql_query_with_new_ta_v1__0.json │ │ ├── analytics__TestAnalyticsTestCase__results__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_asc__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_asc_first_1__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_asc_first_1_after__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_asc_first_1_after_no_next__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_asc_last_1__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_asc_last_1_before__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_asc_last_1_before_no_previous__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_first_1__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_first_1_after__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_first_1_after_no_next__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_last_1__0.json │ │ ├── analytics__TestAnalyticsTestCase__results_pagination_last_1_before__0.json │ │ └── analytics__TestAnalyticsTestCase__results_pagination_last_1_before_no_previous__0.json │ ├── test_account.py │ ├── test_billing.py │ ├── test_branch.py │ ├── test_bundle_analysis_measurements.py │ ├── test_commit.py │ ├── test_components.py │ ├── test_config.py │ ├── test_coverage_analytics.py │ ├── test_coverage_analytics_measurements.py │ ├── test_current_user_ariadne.py │ ├── test_flags.py │ ├── test_impacted_file.py │ ├── test_invoice.py │ ├── test_okta_config.py │ ├── test_onboarding.py │ ├── test_owner.py │ ├── test_owner_measurements.py │ ├── test_path_content.py │ ├── test_plan.py │ ├── test_plan_representation.py │ ├── test_pull.py │ ├── test_pull_comparison.py │ ├── test_repository.py │ ├── test_requested_fields.py │ ├── test_session.py │ ├── test_test_analytics.py │ ├── test_user.py │ ├── test_user_tokens.py │ ├── test_validation.py │ └── test_views.py ├── types │ ├── __init__.py │ ├── account │ │ ├── __init__.py │ │ ├── account.graphql │ │ └── account.py │ ├── billing │ │ ├── __init__.py │ │ ├── billing.graphql │ │ └── billing.py │ ├── branch │ │ ├── __init__.py │ │ ├── branch.graphql │ │ └── branch.py │ ├── bundle_analysis │ │ ├── __init__.py │ │ ├── base.graphql │ │ ├── base.py │ │ ├── comparison.graphql │ │ ├── comparison.py │ │ ├── report.graphql │ │ └── report.py │ ├── commit │ │ ├── __init__.py │ │ ├── commit.graphql │ │ └── commit.py │ ├── comparison │ │ ├── __init__.py │ │ ├── comparison.graphql │ │ └── comparison.py │ ├── component │ │ ├── __init__.py │ │ ├── component.graphql │ │ └── component.py │ ├── component_comparison │ │ ├── __init__.py │ │ ├── component_comparison.graphql │ │ └── component_comparison.py │ ├── config │ │ ├── __init__.py │ │ ├── config.graphql │ │ └── config.py │ ├── coverage_analytics │ │ ├── __init__.py │ │ ├── coverage_analytics.graphql │ │ └── coverage_analytics.py │ ├── coverage_totals │ │ ├── __init__.py │ │ ├── coverage_totals.graphql │ │ └── coverage_totals.py │ ├── enums │ │ ├── __init__.py │ │ ├── asset_ordering.graphql │ │ ├── commit_error_code.graphql │ │ ├── commit_error_type.graphql │ │ ├── commit_state.graphql │ │ ├── commit_status.graphql │ │ ├── coverage_line.graphql │ │ ├── enum_types.py │ │ ├── enums.py │ │ ├── goal_onboarding.graphql │ │ ├── impacted_files_parameters.graphql │ │ ├── login_provider.graphql │ │ ├── measurement_interval.graphql │ │ ├── measurement_type.graphql │ │ ├── ordering_direction.graphql │ │ ├── path_contents_value.graphql │ │ ├── pull_request_state.graphql │ │ ├── repository_ordering.graphql │ │ ├── repository_token.graphql │ │ ├── sync_provider.graphql │ │ ├── test_results_filtering_parameter.graphql │ │ ├── test_results_ordering_parameter.graphql │ │ ├── tier_name.graphql │ │ ├── trial_status.graphql │ │ ├── type_projects.graphql │ │ ├── upload_error_enum.graphql │ │ ├── upload_state.graphql │ │ ├── upload_type.graphql │ │ └── yaml_states.graphql │ ├── errors │ │ ├── __init__.py │ │ ├── errors.graphql │ │ └── errors.py │ ├── file │ │ ├── __init__.py │ │ ├── file.graphql │ │ └── file.py │ ├── flag │ │ ├── __init__.py │ │ ├── flag.graphql │ │ └── flag.py │ ├── flag_comparison │ │ ├── __init__.py │ │ ├── flag_comparison.graphql │ │ └── flag_comparison.py │ ├── flake_aggregates │ │ ├── __init__.py │ │ ├── flake_aggregates.graphql │ │ └── flake_aggregates.py │ ├── impacted_file │ │ ├── __init__.py │ │ ├── impacted_file.graphql │ │ └── impacted_file.py │ ├── inputs │ │ ├── activate_measurements.graphql │ │ ├── branches_set_filters.graphql │ │ ├── bundle_analysis_cache_config.graphql │ │ ├── bundle_analysis_filters.graphql │ │ ├── cancel_trial.graphql │ │ ├── commit_set_filters.graphql │ │ ├── components_filters.graphql │ │ ├── create_api_token.graphql │ │ ├── create_stripe_setup_intent.graphql │ │ ├── create_user_token.graphql │ │ ├── delete_component_measurements.graphql │ │ ├── delete_flag.graphql │ │ ├── delete_session.graphql │ │ ├── encode_secret_string.graphql │ │ ├── flag_comparison_filters.graphql │ │ ├── flag_set_filters.graphql │ │ ├── impacted_files_filters.graphql │ │ ├── measurement_set_filters.graphql │ │ ├── onboard_user.graphql │ │ ├── organization_set_filters.graphql │ │ ├── path_contents_filters.graphql │ │ ├── pulls_set_filters.graphql │ │ ├── regenerate_org_upload_token.graphql │ │ ├── regenerate_repository_token.graphql │ │ ├── regenerate_repository_upload_token.graphql │ │ ├── repository_set_filters.graphql │ │ ├── revoke_user_token.graphql │ │ ├── save_sentry_state.graphql │ │ ├── segments_filter.graphql │ │ ├── set_yaml_on_owner.graphql │ │ ├── start_trial.graphql │ │ └── test_results_filters.graphql │ ├── invoice │ │ ├── __init__.py │ │ ├── invoice.graphql │ │ └── invoice.py │ ├── line_comparison │ │ ├── __init__.py │ │ ├── line_comparison.graphql │ │ └── line_comparison.py │ ├── me │ │ ├── __init__.py │ │ ├── me.graphql │ │ └── me.py │ ├── measurement │ │ ├── __init__.py │ │ ├── measurement.graphql │ │ └── measurement.py │ ├── mutation │ │ ├── __init__.py │ │ ├── activate_measurements │ │ │ ├── __init__.py │ │ │ ├── activate_measurements.graphql │ │ │ └── activate_measurements.py │ │ ├── cancel_trial │ │ │ ├── __init__.py │ │ │ ├── cancel_trial.graphql │ │ │ └── cancel_trial.py │ │ ├── create_api_token │ │ │ ├── __init__.py │ │ │ ├── create_api_token.graphql │ │ │ └── create_api_token.py │ │ ├── create_stripe_setup_intent │ │ │ ├── __init__.py │ │ │ ├── create_stripe_setup_intent.graphql │ │ │ └── create_stripe_setup_intent.py │ │ ├── create_user_token │ │ │ ├── __init__.py │ │ │ ├── create_user_token.graphql │ │ │ └── create_user_token.py │ │ ├── delete_component_measurements │ │ │ ├── __init__.py │ │ │ ├── delete_component_measurements.graphql │ │ │ └── delete_component_measurements.py │ │ ├── delete_flag │ │ │ ├── __init__.py │ │ │ ├── delete_flag.graphql │ │ │ └── delete_flag.py │ │ ├── delete_session │ │ │ ├── __init__.py │ │ │ ├── delete_session.graphql │ │ │ └── delete_session.py │ │ ├── encode_secret_string │ │ │ ├── __init__.py │ │ │ ├── encode_secret_string.graphql │ │ │ └── encode_secret_string.py │ │ ├── erase_repository │ │ │ ├── __init__.py │ │ │ ├── erase_repository.graphql │ │ │ └── erase_repository.py │ │ ├── mutation.graphql │ │ ├── mutation.py │ │ ├── onboard_user │ │ │ ├── __init__.py │ │ │ ├── onboard_user.graphql │ │ │ └── onboard_user.py │ │ ├── regenerate_org_upload_token │ │ │ ├── __init__.py │ │ │ ├── regenerate_org_upload_token.graphql │ │ │ └── regenerate_org_upload_token.py │ │ ├── regenerate_repository_token │ │ │ ├── __init__.py │ │ │ ├── regenerate_repository_token.graphql │ │ │ └── regenerate_repository_token.py │ │ ├── regenerate_repository_upload_token │ │ │ ├── __init__.py │ │ │ ├── regenerate_repository_upload_token.graphql │ │ │ └── regenerate_repository_upload_token.py │ │ ├── revoke_user_token │ │ │ ├── __init__.py │ │ │ ├── revoke_user_token.graphql │ │ │ └── revoke_user_token.py │ │ ├── save_okta_config │ │ │ ├── __init__.py │ │ │ ├── save_okta_config.graphql │ │ │ └── save_okta_config.py │ │ ├── save_sentry_state │ │ │ ├── __init__.py │ │ │ ├── save_sentry_state.graphql │ │ │ └── save_sentry_state.py │ │ ├── save_terms_agreement │ │ │ ├── __init__.py │ │ │ ├── save_terms_agreement.graphql │ │ │ └── save_terms_agreement.py │ │ ├── set_upload_token_required │ │ │ ├── __init__.py │ │ │ ├── set_upload_token_required.graphql │ │ │ └── set_upload_token_required.py │ │ ├── set_yaml_on_owner │ │ │ ├── __init__.py │ │ │ ├── set_yaml_on_owner.graphql │ │ │ └── set_yaml_on_owner.py │ │ ├── start_trial │ │ │ ├── __init__.py │ │ │ ├── start_trial.graphql │ │ │ └── start_trial.py │ │ ├── store_event_metrics │ │ │ ├── __init__.py │ │ │ ├── store_event_metrics.graphql │ │ │ └── store_event_metrics.py │ │ ├── sync_with_git_provider │ │ │ ├── __init__.py │ │ │ ├── sync_with_git_provider.graphql │ │ │ └── sync_with_git_provider.py │ │ ├── update_bundle_cache_config │ │ │ ├── __init__.py │ │ │ ├── update_bundle_cache_config.graphql │ │ │ └── update_bundle_cache_config.py │ │ ├── update_default_organization │ │ │ ├── __init__.py │ │ │ ├── update_default_organization.graphql │ │ │ └── update_default_organization.py │ │ ├── update_profile │ │ │ ├── __init__.py │ │ │ ├── update_profile.graphql │ │ │ └── update_profile.py │ │ ├── update_repository │ │ │ ├── __init__.py │ │ │ ├── update_repository.graphql │ │ │ └── update_repository.py │ │ └── update_self_hosted_settings │ │ │ ├── __init__.py │ │ │ ├── update_self_hosted_settings.graphql │ │ │ └── update_self_hosted_settings.py │ ├── okta_config │ │ ├── __init__.py │ │ ├── okta_config.graphql │ │ └── okta_config.py │ ├── owner │ │ ├── __init__.py │ │ ├── owner.graphql │ │ └── owner.py │ ├── path_contents │ │ ├── __init__.py │ │ ├── path_content.graphql │ │ └── path_content.py │ ├── plan │ │ ├── __init__.py │ │ ├── plan.graphql │ │ └── plan.py │ ├── plan_representation │ │ ├── __init__.py │ │ ├── plan_representation.graphql │ │ └── plan_representation.py │ ├── profile │ │ ├── __init__.py │ │ ├── profile.graphql │ │ └── profile.py │ ├── pull │ │ ├── __init__.py │ │ ├── pull.graphql │ │ └── pull.py │ ├── query │ │ ├── __init__.py │ │ ├── query.graphql │ │ └── query.py │ ├── repository │ │ ├── __init__.py │ │ ├── repository.graphql │ │ └── repository.py │ ├── repository_config │ │ ├── __init__.py │ │ ├── repository_config.graphql │ │ └── repository_config.py │ ├── segment_comparison │ │ ├── __init__.py │ │ ├── segment_comparison.graphql │ │ └── segment_comparison.py │ ├── self_hosted_license │ │ ├── __init__.py │ │ ├── self_hosted_license.graphql │ │ └── self_hosted_license.py │ ├── session │ │ ├── __init__.py │ │ ├── session.graphql │ │ └── session.py │ ├── test_analytics │ │ ├── __init__.py │ │ ├── test_analytics.graphql │ │ └── test_analytics.py │ ├── test_results │ │ ├── __init__.py │ │ ├── test_results.graphql │ │ └── test_results.py │ ├── test_results_aggregates │ │ ├── __init__.py │ │ ├── test_results_aggregates.graphql │ │ └── test_results_aggregates.py │ ├── upload │ │ ├── __init__.py │ │ ├── upload.graphql │ │ └── upload.py │ ├── user │ │ ├── __init__.py │ │ ├── user.graphql │ │ └── user.py │ └── user_token │ │ ├── __init__.py │ │ ├── user_token.graphql │ │ └── user_token.py ├── urls.py ├── validation.py └── views.py ├── graphs ├── __init__.py ├── badges │ └── badges.py ├── helpers │ ├── __init__.py │ ├── badge.py │ ├── graph_utils.py │ └── graphs.py ├── mixins.py ├── settings.py ├── tests │ ├── test_badge_handler.py │ ├── test_bundle_badge_handler.py │ ├── test_graph_handler.py │ ├── test_graph_utils.py │ └── test_helpers.py ├── urls.py └── views.py ├── gunicorn.conf.py ├── labelanalysis ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── serializers.py ├── tests │ ├── __init__.py │ ├── factories.py │ └── integration │ │ ├── __init__.py │ │ └── test_views.py ├── urls.py └── views.py ├── legacy_migrations ├── __init__.py ├── apps.py ├── management │ └── commands │ │ ├── __init__.py │ │ └── migrate.py ├── models.py └── tests │ ├── factories.py │ └── unit │ └── test_models.py ├── manage.py ├── migrate.sh ├── mypy.ini ├── prod.sh ├── production.yml ├── pyproject.toml ├── pytest.ini ├── reports ├── __init__.py ├── admin.py ├── apps.py ├── managers.py ├── models.py └── tests │ ├── __init__.py │ └── factories.py ├── rollouts └── __init__.py ├── ruff.toml ├── services ├── __init__.py ├── activation.py ├── analytics.py ├── billing.py ├── bundle_analysis.py ├── comparison.py ├── components.py ├── decorators.py ├── path.py ├── refresh.py ├── repo_providers.py ├── report.py ├── self_hosted.py ├── sentry.py ├── task │ ├── __init__.py │ ├── task.py │ └── task_router.py ├── tests │ ├── __init__.py │ ├── cassetes │ │ └── test_archive │ │ │ └── TestReport │ │ │ ├── test_create_raw_upload_presigned_get.yaml │ │ │ └── test_create_raw_upload_presigned_put.yaml │ ├── samples │ │ ├── base_bundle_report.sqlite │ │ ├── bundle_report.sqlite │ │ ├── bundle_with_asset_routes.sqlite │ │ ├── bundle_with_assets_and_modules.sqlite │ │ ├── bundle_with_uuid.sqlite │ │ ├── chunks.txt │ │ ├── head_bundle_report.sqlite │ │ ├── head_bundle_report_with_compare_sha_6ca727b0142bf5625bb82af2555d308862063222.sqlite │ │ ├── head_bundle_report_with_gzip_size.sqlite │ │ └── stripe_invoice.json │ ├── test_activation.py │ ├── test_analytics.py │ ├── test_billing.py │ ├── test_bundle_analysis.py │ ├── test_comparison.py │ ├── test_components.py │ ├── test_path.py │ ├── test_redis_configuration.py │ ├── test_refresh.py │ ├── test_repo_providers.py │ ├── test_report.py │ ├── test_self_hosted.py │ ├── test_sentry.py │ ├── test_task.py │ ├── test_task_router.py │ └── test_yaml.py └── yaml.py ├── staging.sh ├── staticanalysis ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── serializers.py ├── tests.py ├── tests │ ├── __init__.py │ ├── factories.py │ ├── test_views.py │ └── unit │ │ ├── __init__.py │ │ └── test_serializers.py ├── urls.py └── views.py ├── templates └── admin │ └── base_site.html ├── timeseries ├── __init__.py ├── admin.py ├── helpers.py ├── models.py ├── templates │ └── admin │ │ └── backfill.html └── tests │ ├── __init__.py │ ├── factories.py │ ├── test_admin.py │ └── test_helpers.py ├── upload ├── __init__.py ├── constants.py ├── helpers.py ├── metrics.py ├── serializers.py ├── tests │ ├── __init__.py │ ├── cassetes │ │ └── test_helpers │ │ │ └── test_determine_repo_for_upload_github_actions.yaml │ ├── test_helpers.py │ ├── test_serializers.py │ ├── test_throttles.py │ ├── test_tokenless_azure.py │ ├── test_upload.py │ ├── test_upload_download.py │ └── views │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_bundle_analysis.py │ │ ├── test_commits.py │ │ ├── test_empty_upload.py │ │ ├── test_helpers.py │ │ ├── test_reports.py │ │ ├── test_test_results.py │ │ ├── test_transplant_report.py │ │ ├── test_upload_completion.py │ │ ├── test_upload_coverage.py │ │ └── test_uploads.py ├── throttles.py ├── tokenless │ ├── __init__.py │ ├── appveyor.py │ ├── azure.py │ ├── base.py │ ├── circleci.py │ ├── cirrus.py │ ├── github_actions.py │ ├── tokenless.py │ └── travis.py ├── urls.py └── views │ ├── base.py │ ├── bundle_analysis.py │ ├── commits.py │ ├── empty_upload.py │ ├── helpers.py │ ├── legacy.py │ ├── reports.py │ ├── test_results.py │ ├── transplant_report.py │ ├── upload_completion.py │ ├── upload_coverage.py │ └── uploads.py ├── utils ├── __init__.py ├── config.py ├── encryption.py ├── logging_configuration.py ├── repos.py ├── rollouts.py ├── routers.py ├── services.py ├── shelter.py ├── test_results.py ├── test_utils.py ├── tests │ └── unit │ │ ├── test_config.py │ │ ├── test_logging.py │ │ ├── test_repos.py │ │ └── test_services.py └── version.py ├── uv.lock ├── validate ├── __init__.py ├── tests │ ├── test_validate.py │ └── test_validate_v2.py ├── urls.py └── views.py └── webhook_handlers ├── __init__.py ├── constants.py ├── tests ├── __init__.py ├── test_bitbucket.py ├── test_bitbucket_server.py ├── test_github.py ├── test_github_enterprise.py ├── test_gitlab.py └── test_gitlab_enterprise.py ├── urls.py └── views ├── __init__.py ├── bitbucket.py ├── bitbucket_server.py ├── github.py └── gitlab.py /.deep-dive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.deep-dive.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cache_cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/cache_cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-license-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/enforce-license-compliance.yml -------------------------------------------------------------------------------- /.github/workflows/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/mypy.yml -------------------------------------------------------------------------------- /.github/workflows/pr_detect_shared_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/pr_detect_shared_changes.yml -------------------------------------------------------------------------------- /.github/workflows/self-hosted-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/self-hosted-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/self-hosted-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/self-hosted-release.yml -------------------------------------------------------------------------------- /.github/workflows/upload-overwatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.github/workflows/upload-overwatch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 25.4.1 -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/apps.py -------------------------------------------------------------------------------- /api/gen_ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/gen_ai/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/gen_ai/serializers.py -------------------------------------------------------------------------------- /api/gen_ai/tests/test_gen_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/gen_ai/tests/test_gen_ai.py -------------------------------------------------------------------------------- /api/gen_ai/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/gen_ai/urls.py -------------------------------------------------------------------------------- /api/gen_ai/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/gen_ai/views.py -------------------------------------------------------------------------------- /api/internal/branch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/branch/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/branch/serializers.py -------------------------------------------------------------------------------- /api/internal/branch/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/branch/views.py -------------------------------------------------------------------------------- /api/internal/chart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/chart/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/chart/filters.py -------------------------------------------------------------------------------- /api/internal/chart/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/chart/helpers.py -------------------------------------------------------------------------------- /api/internal/chart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/chart/urls.py -------------------------------------------------------------------------------- /api/internal/chart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/chart/views.py -------------------------------------------------------------------------------- /api/internal/commit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/commit/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/commit/serializers.py -------------------------------------------------------------------------------- /api/internal/commit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/commit/views.py -------------------------------------------------------------------------------- /api/internal/compare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/compare/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/compare/serializers.py -------------------------------------------------------------------------------- /api/internal/compare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/compare/views.py -------------------------------------------------------------------------------- /api/internal/constants.py: -------------------------------------------------------------------------------- 1 | INTERNAL_API_PREFIX = "internal/" 2 | -------------------------------------------------------------------------------- /api/internal/coverage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/coverage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/coverage/views.py -------------------------------------------------------------------------------- /api/internal/enterprise_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/enterprise_urls.py -------------------------------------------------------------------------------- /api/internal/feature/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/feature/helpers.py -------------------------------------------------------------------------------- /api/internal/feature/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/feature/serializers.py -------------------------------------------------------------------------------- /api/internal/feature/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/feature/views.py -------------------------------------------------------------------------------- /api/internal/license/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/license/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/license/serializers.py -------------------------------------------------------------------------------- /api/internal/license/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/license/urls.py -------------------------------------------------------------------------------- /api/internal/license/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/license/views.py -------------------------------------------------------------------------------- /api/internal/owner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/owner/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/owner/serializers.py -------------------------------------------------------------------------------- /api/internal/owner/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/owner/views.py -------------------------------------------------------------------------------- /api/internal/pull/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/pull/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/pull/serializers.py -------------------------------------------------------------------------------- /api/internal/pull/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/pull/views.py -------------------------------------------------------------------------------- /api/internal/repo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/repo/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/repo/filter.py -------------------------------------------------------------------------------- /api/internal/repo/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/repo/serializers.py -------------------------------------------------------------------------------- /api/internal/repo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/repo/views.py -------------------------------------------------------------------------------- /api/internal/self_hosted/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/self_hosted/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/self_hosted/filters.py -------------------------------------------------------------------------------- /api/internal/self_hosted/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/self_hosted/permissions.py -------------------------------------------------------------------------------- /api/internal/self_hosted/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/self_hosted/serializers.py -------------------------------------------------------------------------------- /api/internal/self_hosted/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/self_hosted/views.py -------------------------------------------------------------------------------- /api/internal/slack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/slack/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/slack/helpers.py -------------------------------------------------------------------------------- /api/internal/slack/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/slack/urls.py -------------------------------------------------------------------------------- /api/internal/slack/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/slack/views.py -------------------------------------------------------------------------------- /api/internal/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/internal/tests/samples/get_commit_diff-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/samples/get_commit_diff-response.json -------------------------------------------------------------------------------- /api/internal/tests/samples/report-field-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/samples/report-field-example.json -------------------------------------------------------------------------------- /api/internal/tests/test_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/test_charts.py -------------------------------------------------------------------------------- /api/internal/tests/test_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/test_feature.py -------------------------------------------------------------------------------- /api/internal/tests/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/test_pagination.py -------------------------------------------------------------------------------- /api/internal/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/test_permissions.py -------------------------------------------------------------------------------- /api/internal/tests/test_repo_accessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/test_repo_accessors.py -------------------------------------------------------------------------------- /api/internal/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/test_utils.py -------------------------------------------------------------------------------- /api/internal/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/test_views.py -------------------------------------------------------------------------------- /api/internal/tests/unit/views/test_compare_flags_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/unit/views/test_compare_flags_view.py -------------------------------------------------------------------------------- /api/internal/tests/unit/views/test_compare_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/unit/views/test_compare_view.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_account_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_account_viewset.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_compare_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_compare_viewset.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_coverage_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_coverage_viewset.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_current_user_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_current_user_view.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_license_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_license_view.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_owner_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_owner_viewset.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_repo_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_repo_view.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_self_hosted_user_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_self_hosted_user_viewset.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_slack_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_slack_view.py -------------------------------------------------------------------------------- /api/internal/tests/views/test_user_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/tests/views/test_user_viewset.py -------------------------------------------------------------------------------- /api/internal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/urls.py -------------------------------------------------------------------------------- /api/internal/user/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/user/serializers.py -------------------------------------------------------------------------------- /api/internal/user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/internal/user/views.py -------------------------------------------------------------------------------- /api/public/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v1/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v1/permissions.py -------------------------------------------------------------------------------- /api/public/v1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v1/serializers.py -------------------------------------------------------------------------------- /api/public/v1/tests/views/test_pull_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v1/tests/views/test_pull_viewset.py -------------------------------------------------------------------------------- /api/public/v1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v1/urls.py -------------------------------------------------------------------------------- /api/public/v1/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v1/views.py -------------------------------------------------------------------------------- /api/public/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/branch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/branch/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/branch/serializers.py -------------------------------------------------------------------------------- /api/public/v2/branch/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/branch/views.py -------------------------------------------------------------------------------- /api/public/v2/commit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/commit/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/commit/serializers.py -------------------------------------------------------------------------------- /api/public/v2/commit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/commit/views.py -------------------------------------------------------------------------------- /api/public/v2/compare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/compare/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/compare/serializers.py -------------------------------------------------------------------------------- /api/public/v2/compare/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/compare/views.py -------------------------------------------------------------------------------- /api/public/v2/component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/component/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/component/serializers.py -------------------------------------------------------------------------------- /api/public/v2/component/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/component/views.py -------------------------------------------------------------------------------- /api/public/v2/coverage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/coverage/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/coverage/filters.py -------------------------------------------------------------------------------- /api/public/v2/coverage/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/coverage/serializers.py -------------------------------------------------------------------------------- /api/public/v2/coverage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/coverage/views.py -------------------------------------------------------------------------------- /api/public/v2/flag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/flag/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/flag/serializers.py -------------------------------------------------------------------------------- /api/public/v2/flag/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/flag/views.py -------------------------------------------------------------------------------- /api/public/v2/owner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/owner/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/owner/serializers.py -------------------------------------------------------------------------------- /api/public/v2/owner/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/owner/views.py -------------------------------------------------------------------------------- /api/public/v2/pull/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/pull/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/pull/serializers.py -------------------------------------------------------------------------------- /api/public/v2/pull/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/pull/views.py -------------------------------------------------------------------------------- /api/public/v2/repo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/repo/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/repo/permissions.py -------------------------------------------------------------------------------- /api/public/v2/repo/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/repo/serializers.py -------------------------------------------------------------------------------- /api/public/v2/repo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/repo/views.py -------------------------------------------------------------------------------- /api/public/v2/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/report/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/report/serializers.py -------------------------------------------------------------------------------- /api/public/v2/report/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/report/views.py -------------------------------------------------------------------------------- /api/public/v2/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/schema.py -------------------------------------------------------------------------------- /api/public/v2/test_results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/v2/test_results/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/test_results/serializers.py -------------------------------------------------------------------------------- /api/public/v2/test_results/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/test_results/views.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_branch_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_branch_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_commit_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_commit_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_compare_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_compare_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_component_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_component_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_coverage_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_coverage_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_owner_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_owner_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_pull_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_pull_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_repo_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_repo_config.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_api_repo_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_api_repo_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_file_report_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_file_report_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_flag_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_flag_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_owners_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_owners_view.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_report_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_report_tree.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_report_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_report_viewset.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_test_results_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_test_results_view.py -------------------------------------------------------------------------------- /api/public/v2/tests/test_totals_viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/tests/test_totals_viewset.py -------------------------------------------------------------------------------- /api/public/v2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/public/v2/urls.py -------------------------------------------------------------------------------- /api/shared/branch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/shared/branch/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/branch/filters.py -------------------------------------------------------------------------------- /api/shared/branch/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/branch/mixins.py -------------------------------------------------------------------------------- /api/shared/commit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/shared/commit/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/commit/filters.py -------------------------------------------------------------------------------- /api/shared/commit/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/commit/mixins.py -------------------------------------------------------------------------------- /api/shared/commit/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/commit/serializers.py -------------------------------------------------------------------------------- /api/shared/compare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/shared/compare/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/compare/mixins.py -------------------------------------------------------------------------------- /api/shared/compare/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/compare/serializers.py -------------------------------------------------------------------------------- /api/shared/error_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/error_views.py -------------------------------------------------------------------------------- /api/shared/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/mixins.py -------------------------------------------------------------------------------- /api/shared/owner/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/owner/filters.py -------------------------------------------------------------------------------- /api/shared/owner/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/owner/mixins.py -------------------------------------------------------------------------------- /api/shared/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/pagination.py -------------------------------------------------------------------------------- /api/shared/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/permissions.py -------------------------------------------------------------------------------- /api/shared/pull/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/shared/pull/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/pull/mixins.py -------------------------------------------------------------------------------- /api/shared/repo/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/repo/filter.py -------------------------------------------------------------------------------- /api/shared/repo/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/repo/mixins.py -------------------------------------------------------------------------------- /api/shared/repo/repository_accessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/repo/repository_accessors.py -------------------------------------------------------------------------------- /api/shared/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/shared/report/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/report/serializers.py -------------------------------------------------------------------------------- /api/shared/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/api/shared/serializers.py -------------------------------------------------------------------------------- /billing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /billing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/apps.py -------------------------------------------------------------------------------- /billing/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/constants.py -------------------------------------------------------------------------------- /billing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/helpers.py -------------------------------------------------------------------------------- /billing/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/migrations/0001_initial.py -------------------------------------------------------------------------------- /billing/migrations/0002_auto_20220118_1232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/migrations/0002_auto_20220118_1232.py -------------------------------------------------------------------------------- /billing/migrations/0003_delete_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/migrations/0003_delete_account.py -------------------------------------------------------------------------------- /billing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /billing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /billing/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/tests/test_helpers.py -------------------------------------------------------------------------------- /billing/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/tests/test_views.py -------------------------------------------------------------------------------- /billing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/urls.py -------------------------------------------------------------------------------- /billing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/billing/views.py -------------------------------------------------------------------------------- /ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/ci.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov.yml -------------------------------------------------------------------------------- /codecov/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/admin.py -------------------------------------------------------------------------------- /codecov/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov/commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/commands/base.py -------------------------------------------------------------------------------- /codecov/commands/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/commands/exceptions.py -------------------------------------------------------------------------------- /codecov/commands/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/commands/executor.py -------------------------------------------------------------------------------- /codecov/commands/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov/commands/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/commands/tests/test_base.py -------------------------------------------------------------------------------- /codecov/commands/tests/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/commands/tests/test_executor.py -------------------------------------------------------------------------------- /codecov/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/db/__init__.py -------------------------------------------------------------------------------- /codecov/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/forms.py -------------------------------------------------------------------------------- /codecov/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/models.py -------------------------------------------------------------------------------- /codecov/settings_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/settings_base.py -------------------------------------------------------------------------------- /codecov/settings_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/settings_dev.py -------------------------------------------------------------------------------- /codecov/settings_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/settings_enterprise.py -------------------------------------------------------------------------------- /codecov/settings_prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/settings_prod.py -------------------------------------------------------------------------------- /codecov/settings_staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/settings_staging.py -------------------------------------------------------------------------------- /codecov/settings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/settings_test.py -------------------------------------------------------------------------------- /codecov/static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov/tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/tests/base_test.py -------------------------------------------------------------------------------- /codecov/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/tests/test_urls.py -------------------------------------------------------------------------------- /codecov/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/tests/test_views.py -------------------------------------------------------------------------------- /codecov/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/urls.py -------------------------------------------------------------------------------- /codecov/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/views.py -------------------------------------------------------------------------------- /codecov/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov/wsgi.py -------------------------------------------------------------------------------- /codecov_auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/admin.py -------------------------------------------------------------------------------- /codecov_auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/apps.py -------------------------------------------------------------------------------- /codecov_auth/authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/authentication/__init__.py -------------------------------------------------------------------------------- /codecov_auth/authentication/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/authentication/helpers.py -------------------------------------------------------------------------------- /codecov_auth/authentication/repo_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/authentication/repo_auth.py -------------------------------------------------------------------------------- /codecov_auth/authentication/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/authentication/types.py -------------------------------------------------------------------------------- /codecov_auth/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/commands/owner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/__init__.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/cancel_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/cancel_trial.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/create_api_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/create_api_token.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/delete_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/delete_session.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/fetch_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/fetch_owner.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/is_syncing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/is_syncing.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/onboard_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/onboard_user.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/save_okta_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/save_okta_config.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/start_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/start_trial.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/trigger_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/trigger_sync.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/interactors/update_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/interactors/update_profile.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/owner.py -------------------------------------------------------------------------------- /codecov_auth/commands/owner/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/commands/owner/tests/test_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/commands/owner/tests/test_owner.py -------------------------------------------------------------------------------- /codecov_auth/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/constants.py -------------------------------------------------------------------------------- /codecov_auth/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/helpers.py -------------------------------------------------------------------------------- /codecov_auth/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/managers.py -------------------------------------------------------------------------------- /codecov_auth/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/middleware.py -------------------------------------------------------------------------------- /codecov_auth/models.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.codecov_auth.models import * 2 | -------------------------------------------------------------------------------- /codecov_auth/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/permissions.py -------------------------------------------------------------------------------- /codecov_auth/services/org_level_token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/services/org_level_token_service.py -------------------------------------------------------------------------------- /codecov_auth/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/signals.py -------------------------------------------------------------------------------- /codecov_auth/templates/admin/extend_trial_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/templates/admin/extend_trial_form.html -------------------------------------------------------------------------------- /codecov_auth/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/factories.py -------------------------------------------------------------------------------- /codecov_auth/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/test_admin.py -------------------------------------------------------------------------------- /codecov_auth/tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/test_migrations.py -------------------------------------------------------------------------------- /codecov_auth/tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/test_signals.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/tests/unit/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/test_authentication.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/test_helpers.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/test_managers.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/test_middleware.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/test_repo_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/test_repo_authentication.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_base.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_bitbucket.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_bitbucket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_bitbucket_server.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_github.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_github_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_github_enterprise.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_gitlab.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_gitlab_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_gitlab_enterprise.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_logout.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_okta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_okta.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_okta_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_okta_cloud.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_okta_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_okta_mixin.py -------------------------------------------------------------------------------- /codecov_auth/tests/unit/views/test_sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/tests/unit/views/test_sentry.py -------------------------------------------------------------------------------- /codecov_auth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/urls.py -------------------------------------------------------------------------------- /codecov_auth/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/__init__.py -------------------------------------------------------------------------------- /codecov_auth/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/base.py -------------------------------------------------------------------------------- /codecov_auth/views/bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/bitbucket.py -------------------------------------------------------------------------------- /codecov_auth/views/bitbucket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/bitbucket_server.py -------------------------------------------------------------------------------- /codecov_auth/views/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/github.py -------------------------------------------------------------------------------- /codecov_auth/views/github_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/github_enterprise.py -------------------------------------------------------------------------------- /codecov_auth/views/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/gitlab.py -------------------------------------------------------------------------------- /codecov_auth/views/gitlab_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/gitlab_enterprise.py -------------------------------------------------------------------------------- /codecov_auth/views/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/logout.py -------------------------------------------------------------------------------- /codecov_auth/views/okta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/okta.py -------------------------------------------------------------------------------- /codecov_auth/views/okta_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/okta_cloud.py -------------------------------------------------------------------------------- /codecov_auth/views/okta_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/okta_mixin.py -------------------------------------------------------------------------------- /codecov_auth/views/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/codecov_auth/views/sentry.py -------------------------------------------------------------------------------- /compare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compare/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/compare/admin.py -------------------------------------------------------------------------------- /compare/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compare/commands/compare/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/compare/commands/compare/__init__.py -------------------------------------------------------------------------------- /compare/commands/compare/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/compare/commands/compare/compare.py -------------------------------------------------------------------------------- /compare/commands/compare/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compare/commands/compare/interactors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compare/models.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.compare.models import * 2 | -------------------------------------------------------------------------------- /compare/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compare/tests/factories.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.compare.tests.factories import * 2 | -------------------------------------------------------------------------------- /compare/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/compare/tests/test_admin.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/conftest.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/branch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/branch/__init__.py -------------------------------------------------------------------------------- /core/commands/branch/branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/branch/branch.py -------------------------------------------------------------------------------- /core/commands/branch/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/branch/interactors/fetch_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/branch/interactors/fetch_branch.py -------------------------------------------------------------------------------- /core/commands/branch/interactors/fetch_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/branch/interactors/fetch_branches.py -------------------------------------------------------------------------------- /core/commands/branch/interactors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/branch/interactors/tests/test_fetch_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/branch/interactors/tests/test_fetch_branch.py -------------------------------------------------------------------------------- /core/commands/branch/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/branch/tests/test_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/branch/tests/test_branch.py -------------------------------------------------------------------------------- /core/commands/commit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/__init__.py -------------------------------------------------------------------------------- /core/commands/commit/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/commit.py -------------------------------------------------------------------------------- /core/commands/commit/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/commit/interactors/fetch_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/interactors/fetch_totals.py -------------------------------------------------------------------------------- /core/commands/commit/interactors/get_commit_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/interactors/get_commit_errors.py -------------------------------------------------------------------------------- /core/commands/commit/interactors/get_file_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/interactors/get_file_content.py -------------------------------------------------------------------------------- /core/commands/commit/interactors/get_final_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/interactors/get_final_yaml.py -------------------------------------------------------------------------------- /core/commands/commit/interactors/get_latest_upload_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/interactors/get_latest_upload_error.py -------------------------------------------------------------------------------- /core/commands/commit/interactors/get_uploads_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/interactors/get_uploads_number.py -------------------------------------------------------------------------------- /core/commands/commit/interactors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/commit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/commit/tests/test_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/commit/tests/test_commit.py -------------------------------------------------------------------------------- /core/commands/component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/component/__init__.py -------------------------------------------------------------------------------- /core/commands/component/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/component/component.py -------------------------------------------------------------------------------- /core/commands/component/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/component/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/component/tests/test_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/component/tests/test_component.py -------------------------------------------------------------------------------- /core/commands/flag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/flag/__init__.py -------------------------------------------------------------------------------- /core/commands/flag/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/flag/flag.py -------------------------------------------------------------------------------- /core/commands/flag/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/flag/interactors/delete_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/flag/interactors/delete_flag.py -------------------------------------------------------------------------------- /core/commands/flag/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/flag/tests/test_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/flag/tests/test_flag.py -------------------------------------------------------------------------------- /core/commands/pull/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/pull/__init__.py -------------------------------------------------------------------------------- /core/commands/pull/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/pull/interactors/fetch_pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/pull/interactors/fetch_pull_request.py -------------------------------------------------------------------------------- /core/commands/pull/interactors/fetch_pull_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/pull/interactors/fetch_pull_requests.py -------------------------------------------------------------------------------- /core/commands/pull/interactors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/pull/pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/pull/pull.py -------------------------------------------------------------------------------- /core/commands/pull/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/pull/tests/test_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/pull/tests/test_pull.py -------------------------------------------------------------------------------- /core/commands/repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/__init__.py -------------------------------------------------------------------------------- /core/commands/repository/interactors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/repository/interactors/erase_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/interactors/erase_repository.py -------------------------------------------------------------------------------- /core/commands/repository/interactors/fetch_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/interactors/fetch_repository.py -------------------------------------------------------------------------------- /core/commands/repository/interactors/get_upload_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/interactors/get_upload_token.py -------------------------------------------------------------------------------- /core/commands/repository/interactors/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/repository/interactors/update_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/interactors/update_repository.py -------------------------------------------------------------------------------- /core/commands/repository/interactors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/interactors/utils.py -------------------------------------------------------------------------------- /core/commands/repository/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/repository.py -------------------------------------------------------------------------------- /core/commands/repository/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/repository/tests/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/commands/repository/tests/test_repository.py -------------------------------------------------------------------------------- /core/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/encoders.py -------------------------------------------------------------------------------- /core/management/commands/check_for_migration_conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/management/commands/check_for_migration_conflicts.py -------------------------------------------------------------------------------- /core/management/commands/codecovPlans-Jan25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/management/commands/codecovPlans-Jan25.csv -------------------------------------------------------------------------------- /core/management/commands/codecovTiers-Jan25.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/management/commands/codecovTiers-Jan25.csv -------------------------------------------------------------------------------- /core/management/commands/delete_rate_limit_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/management/commands/delete_rate_limit_keys.py -------------------------------------------------------------------------------- /core/management/commands/insert_data_to_db_from_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/management/commands/insert_data_to_db_from_csv.py -------------------------------------------------------------------------------- /core/management/commands/update_gitlab_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/management/commands/update_gitlab_webhooks.py -------------------------------------------------------------------------------- /core/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/middleware.py -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.core.models import * 2 | -------------------------------------------------------------------------------- /core/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/permissions.py -------------------------------------------------------------------------------- /core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/signals.py -------------------------------------------------------------------------------- /core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/tests/test_admin.py -------------------------------------------------------------------------------- /core/tests/test_management_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/tests/test_management_commands.py -------------------------------------------------------------------------------- /core/tests/test_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/tests/test_managers.py -------------------------------------------------------------------------------- /core/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/tests/test_middleware.py -------------------------------------------------------------------------------- /core/tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/core/tests/test_signals.py -------------------------------------------------------------------------------- /dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/dev.sh -------------------------------------------------------------------------------- /development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/development.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker/Dockerfile-proxy -------------------------------------------------------------------------------- /docker/Dockerfile.requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker/Dockerfile.requirements -------------------------------------------------------------------------------- /docker/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker/codecov.yml -------------------------------------------------------------------------------- /docker/frpc-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker/frpc-entrypoint.sh -------------------------------------------------------------------------------- /docker/frpc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker/frpc.ini -------------------------------------------------------------------------------- /docker/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/docker/test.yml -------------------------------------------------------------------------------- /enterprise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/enterprise.sh -------------------------------------------------------------------------------- /graphql_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql_api/actions/commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/commits.py -------------------------------------------------------------------------------- /graphql_api/actions/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/comparison.py -------------------------------------------------------------------------------- /graphql_api/actions/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/components.py -------------------------------------------------------------------------------- /graphql_api/actions/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/flags.py -------------------------------------------------------------------------------- /graphql_api/actions/measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/measurements.py -------------------------------------------------------------------------------- /graphql_api/actions/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/owner.py -------------------------------------------------------------------------------- /graphql_api/actions/path_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/path_contents.py -------------------------------------------------------------------------------- /graphql_api/actions/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/actions/repository.py -------------------------------------------------------------------------------- /graphql_api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/apps.py -------------------------------------------------------------------------------- /graphql_api/dataloader/bundle_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/bundle_analysis.py -------------------------------------------------------------------------------- /graphql_api/dataloader/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/commit.py -------------------------------------------------------------------------------- /graphql_api/dataloader/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/comparison.py -------------------------------------------------------------------------------- /graphql_api/dataloader/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/loader.py -------------------------------------------------------------------------------- /graphql_api/dataloader/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/owner.py -------------------------------------------------------------------------------- /graphql_api/dataloader/tests/test_bundle_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/tests/test_bundle_analysis.py -------------------------------------------------------------------------------- /graphql_api/dataloader/tests/test_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/tests/test_commit.py -------------------------------------------------------------------------------- /graphql_api/dataloader/tests/test_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/tests/test_comparison.py -------------------------------------------------------------------------------- /graphql_api/dataloader/tests/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/tests/test_loader.py -------------------------------------------------------------------------------- /graphql_api/dataloader/tests/test_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/dataloader/tests/test_owner.py -------------------------------------------------------------------------------- /graphql_api/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql_api/helpers/ariadne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/helpers/ariadne.py -------------------------------------------------------------------------------- /graphql_api/helpers/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/helpers/connection.py -------------------------------------------------------------------------------- /graphql_api/helpers/lookahead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/helpers/lookahead.py -------------------------------------------------------------------------------- /graphql_api/helpers/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/helpers/mutation.py -------------------------------------------------------------------------------- /graphql_api/helpers/requested_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/helpers/requested_fields.py -------------------------------------------------------------------------------- /graphql_api/helpers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql_api/helpers/tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/helpers/tests/test_connection.py -------------------------------------------------------------------------------- /graphql_api/helpers/tests/test_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/helpers/tests/test_mutation.py -------------------------------------------------------------------------------- /graphql_api/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/schema.py -------------------------------------------------------------------------------- /graphql_api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql_api/tests/actions/test_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/actions/test_commits.py -------------------------------------------------------------------------------- /graphql_api/tests/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/helper.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_activate_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_activate_measurements.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_cancel_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_cancel_trial.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_create_api_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_create_api_token.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_create_user_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_create_user_token.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_delete_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_delete_flag.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_delete_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_delete_session.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_encode_secret_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_encode_secret_string.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_erase_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_erase_repository.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_revoke_user_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_revoke_user_token.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_save_okta_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_save_okta_config.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_save_sentry_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_save_sentry_state.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_save_terms_agreement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_save_terms_agreement.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_set_yaml_on_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_set_yaml_on_owner.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_start_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_start_trial.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_store_codecov_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_store_codecov_metrics.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_update_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_update_profile.py -------------------------------------------------------------------------------- /graphql_api/tests/mutation/test_update_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/mutation/test_update_repository.py -------------------------------------------------------------------------------- /graphql_api/tests/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_account.py -------------------------------------------------------------------------------- /graphql_api/tests/test_billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_billing.py -------------------------------------------------------------------------------- /graphql_api/tests/test_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_branch.py -------------------------------------------------------------------------------- /graphql_api/tests/test_bundle_analysis_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_bundle_analysis_measurements.py -------------------------------------------------------------------------------- /graphql_api/tests/test_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_commit.py -------------------------------------------------------------------------------- /graphql_api/tests/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_components.py -------------------------------------------------------------------------------- /graphql_api/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_config.py -------------------------------------------------------------------------------- /graphql_api/tests/test_coverage_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_coverage_analytics.py -------------------------------------------------------------------------------- /graphql_api/tests/test_coverage_analytics_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_coverage_analytics_measurements.py -------------------------------------------------------------------------------- /graphql_api/tests/test_current_user_ariadne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_current_user_ariadne.py -------------------------------------------------------------------------------- /graphql_api/tests/test_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_flags.py -------------------------------------------------------------------------------- /graphql_api/tests/test_impacted_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_impacted_file.py -------------------------------------------------------------------------------- /graphql_api/tests/test_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_invoice.py -------------------------------------------------------------------------------- /graphql_api/tests/test_okta_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_okta_config.py -------------------------------------------------------------------------------- /graphql_api/tests/test_onboarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_onboarding.py -------------------------------------------------------------------------------- /graphql_api/tests/test_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_owner.py -------------------------------------------------------------------------------- /graphql_api/tests/test_owner_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_owner_measurements.py -------------------------------------------------------------------------------- /graphql_api/tests/test_path_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_path_content.py -------------------------------------------------------------------------------- /graphql_api/tests/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_plan.py -------------------------------------------------------------------------------- /graphql_api/tests/test_plan_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_plan_representation.py -------------------------------------------------------------------------------- /graphql_api/tests/test_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_pull.py -------------------------------------------------------------------------------- /graphql_api/tests/test_pull_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_pull_comparison.py -------------------------------------------------------------------------------- /graphql_api/tests/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_repository.py -------------------------------------------------------------------------------- /graphql_api/tests/test_requested_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_requested_fields.py -------------------------------------------------------------------------------- /graphql_api/tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_session.py -------------------------------------------------------------------------------- /graphql_api/tests/test_test_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_test_analytics.py -------------------------------------------------------------------------------- /graphql_api/tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_user.py -------------------------------------------------------------------------------- /graphql_api/tests/test_user_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_user_tokens.py -------------------------------------------------------------------------------- /graphql_api/tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_validation.py -------------------------------------------------------------------------------- /graphql_api/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/tests/test_views.py -------------------------------------------------------------------------------- /graphql_api/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/account/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/account/account.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/account/account.graphql -------------------------------------------------------------------------------- /graphql_api/types/account/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/account/account.py -------------------------------------------------------------------------------- /graphql_api/types/billing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/billing/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/billing/billing.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/billing/billing.graphql -------------------------------------------------------------------------------- /graphql_api/types/billing/billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/billing/billing.py -------------------------------------------------------------------------------- /graphql_api/types/branch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/branch/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/branch/branch.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/branch/branch.graphql -------------------------------------------------------------------------------- /graphql_api/types/branch/branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/branch/branch.py -------------------------------------------------------------------------------- /graphql_api/types/bundle_analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/bundle_analysis/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/bundle_analysis/base.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/bundle_analysis/base.graphql -------------------------------------------------------------------------------- /graphql_api/types/bundle_analysis/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/bundle_analysis/base.py -------------------------------------------------------------------------------- /graphql_api/types/bundle_analysis/comparison.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/bundle_analysis/comparison.graphql -------------------------------------------------------------------------------- /graphql_api/types/bundle_analysis/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/bundle_analysis/comparison.py -------------------------------------------------------------------------------- /graphql_api/types/bundle_analysis/report.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/bundle_analysis/report.graphql -------------------------------------------------------------------------------- /graphql_api/types/bundle_analysis/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/bundle_analysis/report.py -------------------------------------------------------------------------------- /graphql_api/types/commit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/commit/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/commit/commit.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/commit/commit.graphql -------------------------------------------------------------------------------- /graphql_api/types/commit/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/commit/commit.py -------------------------------------------------------------------------------- /graphql_api/types/comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/comparison/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/comparison/comparison.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/comparison/comparison.graphql -------------------------------------------------------------------------------- /graphql_api/types/comparison/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/comparison/comparison.py -------------------------------------------------------------------------------- /graphql_api/types/component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/component/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/component/component.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/component/component.graphql -------------------------------------------------------------------------------- /graphql_api/types/component/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/component/component.py -------------------------------------------------------------------------------- /graphql_api/types/component_comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/component_comparison/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/config/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/config/config.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/config/config.graphql -------------------------------------------------------------------------------- /graphql_api/types/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/config/config.py -------------------------------------------------------------------------------- /graphql_api/types/coverage_analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/coverage_analytics/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/coverage_analytics/coverage_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/coverage_analytics/coverage_analytics.py -------------------------------------------------------------------------------- /graphql_api/types/coverage_totals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/coverage_totals/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/coverage_totals/coverage_totals.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/coverage_totals/coverage_totals.graphql -------------------------------------------------------------------------------- /graphql_api/types/coverage_totals/coverage_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/coverage_totals/coverage_totals.py -------------------------------------------------------------------------------- /graphql_api/types/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/enums/asset_ordering.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/asset_ordering.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/commit_error_code.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/commit_error_code.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/commit_error_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/commit_error_type.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/commit_state.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/commit_state.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/commit_status.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/commit_status.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/coverage_line.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/coverage_line.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/enum_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/enum_types.py -------------------------------------------------------------------------------- /graphql_api/types/enums/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/enums.py -------------------------------------------------------------------------------- /graphql_api/types/enums/goal_onboarding.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/goal_onboarding.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/impacted_files_parameters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/impacted_files_parameters.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/login_provider.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/login_provider.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/measurement_interval.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/measurement_interval.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/measurement_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/measurement_type.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/ordering_direction.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/ordering_direction.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/path_contents_value.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/path_contents_value.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/pull_request_state.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/pull_request_state.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/repository_ordering.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/repository_ordering.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/repository_token.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/repository_token.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/sync_provider.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/sync_provider.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/tier_name.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/tier_name.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/trial_status.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/trial_status.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/type_projects.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/type_projects.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/upload_error_enum.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/upload_error_enum.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/upload_state.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/enums/upload_state.graphql -------------------------------------------------------------------------------- /graphql_api/types/enums/upload_type.graphql: -------------------------------------------------------------------------------- 1 | enum UploadType { 2 | UPLOADED 3 | CARRIEDFORWARD 4 | } 5 | -------------------------------------------------------------------------------- /graphql_api/types/enums/yaml_states.graphql: -------------------------------------------------------------------------------- 1 | enum YamlStates { 2 | DEFAULT 3 | } 4 | -------------------------------------------------------------------------------- /graphql_api/types/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/errors/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/errors/errors.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/errors/errors.graphql -------------------------------------------------------------------------------- /graphql_api/types/errors/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/errors/errors.py -------------------------------------------------------------------------------- /graphql_api/types/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/file/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/file/file.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/file/file.graphql -------------------------------------------------------------------------------- /graphql_api/types/file/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/file/file.py -------------------------------------------------------------------------------- /graphql_api/types/flag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flag/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/flag/flag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flag/flag.graphql -------------------------------------------------------------------------------- /graphql_api/types/flag/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flag/flag.py -------------------------------------------------------------------------------- /graphql_api/types/flag_comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flag_comparison/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/flag_comparison/flag_comparison.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flag_comparison/flag_comparison.graphql -------------------------------------------------------------------------------- /graphql_api/types/flag_comparison/flag_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flag_comparison/flag_comparison.py -------------------------------------------------------------------------------- /graphql_api/types/flake_aggregates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flake_aggregates/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/flake_aggregates/flake_aggregates.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flake_aggregates/flake_aggregates.graphql -------------------------------------------------------------------------------- /graphql_api/types/flake_aggregates/flake_aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/flake_aggregates/flake_aggregates.py -------------------------------------------------------------------------------- /graphql_api/types/impacted_file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/impacted_file/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/impacted_file/impacted_file.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/impacted_file/impacted_file.graphql -------------------------------------------------------------------------------- /graphql_api/types/impacted_file/impacted_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/impacted_file/impacted_file.py -------------------------------------------------------------------------------- /graphql_api/types/inputs/activate_measurements.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/activate_measurements.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/branches_set_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/branches_set_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/bundle_analysis_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/bundle_analysis_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/cancel_trial.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/cancel_trial.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/commit_set_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/commit_set_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/components_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/components_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/create_api_token.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/create_api_token.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/create_stripe_setup_intent.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/create_stripe_setup_intent.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/create_user_token.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/create_user_token.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/delete_flag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/delete_flag.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/delete_session.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/delete_session.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/encode_secret_string.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/encode_secret_string.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/flag_comparison_filters.graphql: -------------------------------------------------------------------------------- 1 | input FlagComparisonFilters { 2 | term: String 3 | } 4 | -------------------------------------------------------------------------------- /graphql_api/types/inputs/flag_set_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/flag_set_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/impacted_files_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/impacted_files_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/measurement_set_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/measurement_set_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/onboard_user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/onboard_user.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/organization_set_filters.graphql: -------------------------------------------------------------------------------- 1 | input OrganizationSetFilters { 2 | term: String 3 | } 4 | -------------------------------------------------------------------------------- /graphql_api/types/inputs/path_contents_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/path_contents_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/pulls_set_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/pulls_set_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/repository_set_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/repository_set_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/revoke_user_token.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/revoke_user_token.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/save_sentry_state.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/save_sentry_state.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/segments_filter.graphql: -------------------------------------------------------------------------------- 1 | input SegmentsFilters { 2 | hasUnintendedChanges: Boolean 3 | } 4 | -------------------------------------------------------------------------------- /graphql_api/types/inputs/set_yaml_on_owner.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/set_yaml_on_owner.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/start_trial.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/start_trial.graphql -------------------------------------------------------------------------------- /graphql_api/types/inputs/test_results_filters.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/inputs/test_results_filters.graphql -------------------------------------------------------------------------------- /graphql_api/types/invoice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/invoice/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/invoice/invoice.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/invoice/invoice.graphql -------------------------------------------------------------------------------- /graphql_api/types/invoice/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/invoice/invoice.py -------------------------------------------------------------------------------- /graphql_api/types/line_comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/line_comparison/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/line_comparison/line_comparison.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/line_comparison/line_comparison.graphql -------------------------------------------------------------------------------- /graphql_api/types/line_comparison/line_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/line_comparison/line_comparison.py -------------------------------------------------------------------------------- /graphql_api/types/me/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/me/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/me/me.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/me/me.graphql -------------------------------------------------------------------------------- /graphql_api/types/me/me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/me/me.py -------------------------------------------------------------------------------- /graphql_api/types/measurement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/measurement/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/measurement/measurement.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/measurement/measurement.graphql -------------------------------------------------------------------------------- /graphql_api/types/measurement/measurement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/measurement/measurement.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/cancel_trial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/cancel_trial/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/cancel_trial/cancel_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/cancel_trial/cancel_trial.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/create_api_token/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/create_api_token/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/create_user_token/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/create_user_token/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/delete_flag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/delete_flag/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/delete_flag/delete_flag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/delete_flag/delete_flag.graphql -------------------------------------------------------------------------------- /graphql_api/types/mutation/delete_flag/delete_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/delete_flag/delete_flag.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/delete_session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/delete_session/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/delete_session/delete_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/delete_session/delete_session.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/encode_secret_string/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/encode_secret_string/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/erase_repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/erase_repository/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/mutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/mutation.graphql -------------------------------------------------------------------------------- /graphql_api/types/mutation/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/mutation.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/onboard_user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/onboard_user/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/onboard_user/onboard_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/onboard_user/onboard_user.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/revoke_user_token/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/revoke_user_token/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/save_okta_config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/save_okta_config/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/save_sentry_state/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/save_sentry_state/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/save_terms_agreement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/save_terms_agreement/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/set_yaml_on_owner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/set_yaml_on_owner/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/start_trial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/start_trial/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/start_trial/start_trial.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/start_trial/start_trial.graphql -------------------------------------------------------------------------------- /graphql_api/types/mutation/start_trial/start_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/start_trial/start_trial.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/update_profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/update_profile/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/mutation/update_repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/mutation/update_repository/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/okta_config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/okta_config/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/okta_config/okta_config.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/okta_config/okta_config.graphql -------------------------------------------------------------------------------- /graphql_api/types/okta_config/okta_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/okta_config/okta_config.py -------------------------------------------------------------------------------- /graphql_api/types/owner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/owner/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/owner/owner.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/owner/owner.graphql -------------------------------------------------------------------------------- /graphql_api/types/owner/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/owner/owner.py -------------------------------------------------------------------------------- /graphql_api/types/path_contents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/path_contents/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/path_contents/path_content.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/path_contents/path_content.graphql -------------------------------------------------------------------------------- /graphql_api/types/path_contents/path_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/path_contents/path_content.py -------------------------------------------------------------------------------- /graphql_api/types/plan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/plan/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/plan/plan.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/plan/plan.graphql -------------------------------------------------------------------------------- /graphql_api/types/plan/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/plan/plan.py -------------------------------------------------------------------------------- /graphql_api/types/plan_representation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/plan_representation/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/profile/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/profile/profile.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/profile/profile.graphql -------------------------------------------------------------------------------- /graphql_api/types/profile/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/profile/profile.py -------------------------------------------------------------------------------- /graphql_api/types/pull/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/pull/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/pull/pull.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/pull/pull.graphql -------------------------------------------------------------------------------- /graphql_api/types/pull/pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/pull/pull.py -------------------------------------------------------------------------------- /graphql_api/types/query/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/query/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/query/query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/query/query.graphql -------------------------------------------------------------------------------- /graphql_api/types/query/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/query/query.py -------------------------------------------------------------------------------- /graphql_api/types/repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/repository/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/repository/repository.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/repository/repository.graphql -------------------------------------------------------------------------------- /graphql_api/types/repository/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/repository/repository.py -------------------------------------------------------------------------------- /graphql_api/types/repository_config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/repository_config/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/repository_config/repository_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/repository_config/repository_config.py -------------------------------------------------------------------------------- /graphql_api/types/segment_comparison/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/segment_comparison/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/self_hosted_license/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/self_hosted_license/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/session/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/session/session.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/session/session.graphql -------------------------------------------------------------------------------- /graphql_api/types/session/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/session/session.py -------------------------------------------------------------------------------- /graphql_api/types/test_analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/test_analytics/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/test_analytics/test_analytics.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/test_analytics/test_analytics.graphql -------------------------------------------------------------------------------- /graphql_api/types/test_analytics/test_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/test_analytics/test_analytics.py -------------------------------------------------------------------------------- /graphql_api/types/test_results/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/test_results/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/test_results/test_results.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/test_results/test_results.graphql -------------------------------------------------------------------------------- /graphql_api/types/test_results/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/test_results/test_results.py -------------------------------------------------------------------------------- /graphql_api/types/test_results_aggregates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/test_results_aggregates/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/upload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/upload/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/upload/upload.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/upload/upload.graphql -------------------------------------------------------------------------------- /graphql_api/types/upload/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/upload/upload.py -------------------------------------------------------------------------------- /graphql_api/types/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/user/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/user/user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/user/user.graphql -------------------------------------------------------------------------------- /graphql_api/types/user/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/user/user.py -------------------------------------------------------------------------------- /graphql_api/types/user_token/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/user_token/__init__.py -------------------------------------------------------------------------------- /graphql_api/types/user_token/user_token.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/user_token/user_token.graphql -------------------------------------------------------------------------------- /graphql_api/types/user_token/user_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/types/user_token/user_token.py -------------------------------------------------------------------------------- /graphql_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/urls.py -------------------------------------------------------------------------------- /graphql_api/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/validation.py -------------------------------------------------------------------------------- /graphql_api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphql_api/views.py -------------------------------------------------------------------------------- /graphs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphs/badges/badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/badges/badges.py -------------------------------------------------------------------------------- /graphs/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphs/helpers/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/helpers/badge.py -------------------------------------------------------------------------------- /graphs/helpers/graph_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/helpers/graph_utils.py -------------------------------------------------------------------------------- /graphs/helpers/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/helpers/graphs.py -------------------------------------------------------------------------------- /graphs/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/mixins.py -------------------------------------------------------------------------------- /graphs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/settings.py -------------------------------------------------------------------------------- /graphs/tests/test_badge_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/tests/test_badge_handler.py -------------------------------------------------------------------------------- /graphs/tests/test_bundle_badge_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/tests/test_bundle_badge_handler.py -------------------------------------------------------------------------------- /graphs/tests/test_graph_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/tests/test_graph_handler.py -------------------------------------------------------------------------------- /graphs/tests/test_graph_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/tests/test_graph_utils.py -------------------------------------------------------------------------------- /graphs/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/tests/test_helpers.py -------------------------------------------------------------------------------- /graphs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/urls.py -------------------------------------------------------------------------------- /graphs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/graphs/views.py -------------------------------------------------------------------------------- /gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/gunicorn.conf.py -------------------------------------------------------------------------------- /labelanalysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelanalysis/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /labelanalysis/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/labelanalysis/apps.py -------------------------------------------------------------------------------- /labelanalysis/models.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.labelanalysis.models import * 2 | -------------------------------------------------------------------------------- /labelanalysis/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/labelanalysis/serializers.py -------------------------------------------------------------------------------- /labelanalysis/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelanalysis/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/labelanalysis/tests/factories.py -------------------------------------------------------------------------------- /labelanalysis/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labelanalysis/tests/integration/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/labelanalysis/tests/integration/test_views.py -------------------------------------------------------------------------------- /labelanalysis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/labelanalysis/urls.py -------------------------------------------------------------------------------- /labelanalysis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/labelanalysis/views.py -------------------------------------------------------------------------------- /legacy_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy_migrations/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/legacy_migrations/apps.py -------------------------------------------------------------------------------- /legacy_migrations/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy_migrations/management/commands/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/legacy_migrations/management/commands/migrate.py -------------------------------------------------------------------------------- /legacy_migrations/models.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.legacy_migrations.models import * 2 | -------------------------------------------------------------------------------- /legacy_migrations/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/legacy_migrations/tests/factories.py -------------------------------------------------------------------------------- /legacy_migrations/tests/unit/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/legacy_migrations/tests/unit/test_models.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/manage.py -------------------------------------------------------------------------------- /migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/migrate.sh -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/mypy.ini -------------------------------------------------------------------------------- /prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/prod.sh -------------------------------------------------------------------------------- /production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/production.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/pytest.ini -------------------------------------------------------------------------------- /reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/reports/admin.py -------------------------------------------------------------------------------- /reports/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/reports/apps.py -------------------------------------------------------------------------------- /reports/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/reports/managers.py -------------------------------------------------------------------------------- /reports/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/reports/models.py -------------------------------------------------------------------------------- /reports/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/reports/tests/factories.py -------------------------------------------------------------------------------- /rollouts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/rollouts/__init__.py -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/ruff.toml -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/__init__.py -------------------------------------------------------------------------------- /services/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/activation.py -------------------------------------------------------------------------------- /services/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/analytics.py -------------------------------------------------------------------------------- /services/billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/billing.py -------------------------------------------------------------------------------- /services/bundle_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/bundle_analysis.py -------------------------------------------------------------------------------- /services/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/comparison.py -------------------------------------------------------------------------------- /services/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/components.py -------------------------------------------------------------------------------- /services/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/decorators.py -------------------------------------------------------------------------------- /services/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/path.py -------------------------------------------------------------------------------- /services/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/refresh.py -------------------------------------------------------------------------------- /services/repo_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/repo_providers.py -------------------------------------------------------------------------------- /services/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/report.py -------------------------------------------------------------------------------- /services/self_hosted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/self_hosted.py -------------------------------------------------------------------------------- /services/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/sentry.py -------------------------------------------------------------------------------- /services/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/task/__init__.py -------------------------------------------------------------------------------- /services/task/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/task/task.py -------------------------------------------------------------------------------- /services/task/task_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/task/task_router.py -------------------------------------------------------------------------------- /services/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/tests/samples/base_bundle_report.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/samples/base_bundle_report.sqlite -------------------------------------------------------------------------------- /services/tests/samples/bundle_report.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/samples/bundle_report.sqlite -------------------------------------------------------------------------------- /services/tests/samples/bundle_with_asset_routes.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/samples/bundle_with_asset_routes.sqlite -------------------------------------------------------------------------------- /services/tests/samples/bundle_with_uuid.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/samples/bundle_with_uuid.sqlite -------------------------------------------------------------------------------- /services/tests/samples/chunks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/samples/chunks.txt -------------------------------------------------------------------------------- /services/tests/samples/head_bundle_report.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/samples/head_bundle_report.sqlite -------------------------------------------------------------------------------- /services/tests/samples/stripe_invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/samples/stripe_invoice.json -------------------------------------------------------------------------------- /services/tests/test_activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_activation.py -------------------------------------------------------------------------------- /services/tests/test_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_analytics.py -------------------------------------------------------------------------------- /services/tests/test_billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_billing.py -------------------------------------------------------------------------------- /services/tests/test_bundle_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_bundle_analysis.py -------------------------------------------------------------------------------- /services/tests/test_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_comparison.py -------------------------------------------------------------------------------- /services/tests/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_components.py -------------------------------------------------------------------------------- /services/tests/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_path.py -------------------------------------------------------------------------------- /services/tests/test_redis_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_redis_configuration.py -------------------------------------------------------------------------------- /services/tests/test_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_refresh.py -------------------------------------------------------------------------------- /services/tests/test_repo_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_repo_providers.py -------------------------------------------------------------------------------- /services/tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_report.py -------------------------------------------------------------------------------- /services/tests/test_self_hosted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_self_hosted.py -------------------------------------------------------------------------------- /services/tests/test_sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_sentry.py -------------------------------------------------------------------------------- /services/tests/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_task.py -------------------------------------------------------------------------------- /services/tests/test_task_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_task_router.py -------------------------------------------------------------------------------- /services/tests/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/tests/test_yaml.py -------------------------------------------------------------------------------- /services/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/services/yaml.py -------------------------------------------------------------------------------- /staging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staging.sh -------------------------------------------------------------------------------- /staticanalysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticanalysis/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /staticanalysis/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staticanalysis/apps.py -------------------------------------------------------------------------------- /staticanalysis/models.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.staticanalysis.models import * 2 | -------------------------------------------------------------------------------- /staticanalysis/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staticanalysis/serializers.py -------------------------------------------------------------------------------- /staticanalysis/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticanalysis/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticanalysis/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staticanalysis/tests/factories.py -------------------------------------------------------------------------------- /staticanalysis/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staticanalysis/tests/test_views.py -------------------------------------------------------------------------------- /staticanalysis/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticanalysis/tests/unit/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staticanalysis/tests/unit/test_serializers.py -------------------------------------------------------------------------------- /staticanalysis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staticanalysis/urls.py -------------------------------------------------------------------------------- /staticanalysis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/staticanalysis/views.py -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /timeseries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/timeseries/admin.py -------------------------------------------------------------------------------- /timeseries/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/timeseries/helpers.py -------------------------------------------------------------------------------- /timeseries/models.py: -------------------------------------------------------------------------------- 1 | from shared.django_apps.timeseries.models import * 2 | -------------------------------------------------------------------------------- /timeseries/templates/admin/backfill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/timeseries/templates/admin/backfill.html -------------------------------------------------------------------------------- /timeseries/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeseries/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/timeseries/tests/factories.py -------------------------------------------------------------------------------- /timeseries/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/timeseries/tests/test_admin.py -------------------------------------------------------------------------------- /timeseries/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/timeseries/tests/test_helpers.py -------------------------------------------------------------------------------- /upload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/constants.py -------------------------------------------------------------------------------- /upload/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/helpers.py -------------------------------------------------------------------------------- /upload/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/metrics.py -------------------------------------------------------------------------------- /upload/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/serializers.py -------------------------------------------------------------------------------- /upload/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/test_helpers.py -------------------------------------------------------------------------------- /upload/tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/test_serializers.py -------------------------------------------------------------------------------- /upload/tests/test_throttles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/test_throttles.py -------------------------------------------------------------------------------- /upload/tests/test_tokenless_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/test_tokenless_azure.py -------------------------------------------------------------------------------- /upload/tests/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/test_upload.py -------------------------------------------------------------------------------- /upload/tests/test_upload_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/test_upload_download.py -------------------------------------------------------------------------------- /upload/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tests/views/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_base.py -------------------------------------------------------------------------------- /upload/tests/views/test_bundle_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_bundle_analysis.py -------------------------------------------------------------------------------- /upload/tests/views/test_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_commits.py -------------------------------------------------------------------------------- /upload/tests/views/test_empty_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_empty_upload.py -------------------------------------------------------------------------------- /upload/tests/views/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_helpers.py -------------------------------------------------------------------------------- /upload/tests/views/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_reports.py -------------------------------------------------------------------------------- /upload/tests/views/test_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_test_results.py -------------------------------------------------------------------------------- /upload/tests/views/test_transplant_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_transplant_report.py -------------------------------------------------------------------------------- /upload/tests/views/test_upload_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_upload_completion.py -------------------------------------------------------------------------------- /upload/tests/views/test_upload_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_upload_coverage.py -------------------------------------------------------------------------------- /upload/tests/views/test_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tests/views/test_uploads.py -------------------------------------------------------------------------------- /upload/throttles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/throttles.py -------------------------------------------------------------------------------- /upload/tokenless/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tokenless/appveyor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/appveyor.py -------------------------------------------------------------------------------- /upload/tokenless/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/azure.py -------------------------------------------------------------------------------- /upload/tokenless/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/base.py -------------------------------------------------------------------------------- /upload/tokenless/circleci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/circleci.py -------------------------------------------------------------------------------- /upload/tokenless/cirrus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/cirrus.py -------------------------------------------------------------------------------- /upload/tokenless/github_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/github_actions.py -------------------------------------------------------------------------------- /upload/tokenless/tokenless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/tokenless.py -------------------------------------------------------------------------------- /upload/tokenless/travis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/tokenless/travis.py -------------------------------------------------------------------------------- /upload/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/urls.py -------------------------------------------------------------------------------- /upload/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/base.py -------------------------------------------------------------------------------- /upload/views/bundle_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/bundle_analysis.py -------------------------------------------------------------------------------- /upload/views/commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/commits.py -------------------------------------------------------------------------------- /upload/views/empty_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/empty_upload.py -------------------------------------------------------------------------------- /upload/views/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/helpers.py -------------------------------------------------------------------------------- /upload/views/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/legacy.py -------------------------------------------------------------------------------- /upload/views/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/reports.py -------------------------------------------------------------------------------- /upload/views/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/test_results.py -------------------------------------------------------------------------------- /upload/views/transplant_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/transplant_report.py -------------------------------------------------------------------------------- /upload/views/upload_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/upload_completion.py -------------------------------------------------------------------------------- /upload/views/upload_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/upload_coverage.py -------------------------------------------------------------------------------- /upload/views/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/upload/views/uploads.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/encryption.py -------------------------------------------------------------------------------- /utils/logging_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/logging_configuration.py -------------------------------------------------------------------------------- /utils/repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/repos.py -------------------------------------------------------------------------------- /utils/rollouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/rollouts.py -------------------------------------------------------------------------------- /utils/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/routers.py -------------------------------------------------------------------------------- /utils/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/services.py -------------------------------------------------------------------------------- /utils/shelter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/shelter.py -------------------------------------------------------------------------------- /utils/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/test_results.py -------------------------------------------------------------------------------- /utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/test_utils.py -------------------------------------------------------------------------------- /utils/tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/tests/unit/test_config.py -------------------------------------------------------------------------------- /utils/tests/unit/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/tests/unit/test_logging.py -------------------------------------------------------------------------------- /utils/tests/unit/test_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/tests/unit/test_repos.py -------------------------------------------------------------------------------- /utils/tests/unit/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/tests/unit/test_services.py -------------------------------------------------------------------------------- /utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/utils/version.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/uv.lock -------------------------------------------------------------------------------- /validate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /validate/tests/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/validate/tests/test_validate.py -------------------------------------------------------------------------------- /validate/tests/test_validate_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/validate/tests/test_validate_v2.py -------------------------------------------------------------------------------- /validate/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/validate/urls.py -------------------------------------------------------------------------------- /validate/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/validate/views.py -------------------------------------------------------------------------------- /webhook_handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webhook_handlers/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/constants.py -------------------------------------------------------------------------------- /webhook_handlers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webhook_handlers/tests/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/tests/test_bitbucket.py -------------------------------------------------------------------------------- /webhook_handlers/tests/test_bitbucket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/tests/test_bitbucket_server.py -------------------------------------------------------------------------------- /webhook_handlers/tests/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/tests/test_github.py -------------------------------------------------------------------------------- /webhook_handlers/tests/test_github_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/tests/test_github_enterprise.py -------------------------------------------------------------------------------- /webhook_handlers/tests/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/tests/test_gitlab.py -------------------------------------------------------------------------------- /webhook_handlers/tests/test_gitlab_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/tests/test_gitlab_enterprise.py -------------------------------------------------------------------------------- /webhook_handlers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/urls.py -------------------------------------------------------------------------------- /webhook_handlers/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/views/__init__.py -------------------------------------------------------------------------------- /webhook_handlers/views/bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/views/bitbucket.py -------------------------------------------------------------------------------- /webhook_handlers/views/bitbucket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/views/bitbucket_server.py -------------------------------------------------------------------------------- /webhook_handlers/views/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/views/github.py -------------------------------------------------------------------------------- /webhook_handlers/views/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-api/HEAD/webhook_handlers/views/gitlab.py --------------------------------------------------------------------------------