├── .github └── workflows │ ├── broadcast_api_changes.yml │ ├── build_assets.yml │ ├── build_for_pypi.yml │ ├── ci-job.yml │ ├── ci.yml │ ├── create_release.yml │ ├── create_release_pr.yml │ ├── enforce-license-compliance.yml │ └── release_flow.yml ├── .gitignore ├── .pip-tools.toml ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── codecov.yml ├── codecov_cli ├── __init__.py ├── commands │ ├── __init__.py │ ├── base_picking.py │ ├── commit.py │ ├── create_report_result.py │ ├── empty_upload.py │ ├── get_report_results.py │ ├── labelanalysis.py │ ├── process_test_results.py │ ├── report.py │ ├── send_notifications.py │ ├── staticanalysis.py │ ├── upload.py │ ├── upload_coverage.py │ └── upload_process.py ├── fallbacks.py ├── helpers │ ├── __init__.py │ ├── args.py │ ├── ci_adapters │ │ ├── __init__.py │ │ ├── appveyor_ci.py │ │ ├── azure_pipelines.py │ │ ├── base.py │ │ ├── bitbucket_ci.py │ │ ├── bitrise_ci.py │ │ ├── buildkite.py │ │ ├── circleci.py │ │ ├── cirrus_ci.py │ │ ├── cloudbuild.py │ │ ├── codebuild.py │ │ ├── droneci.py │ │ ├── github_actions.py │ │ ├── gitlab_ci.py │ │ ├── heroku.py │ │ ├── jenkins.py │ │ ├── local.py │ │ ├── teamcity.py │ │ ├── travis_ci.py │ │ └── woodpeckerci.py │ ├── config.py │ ├── encoder.py │ ├── folder_searcher.py │ ├── git.py │ ├── git_services │ │ ├── __init__.py │ │ └── github.py │ ├── glob.py │ ├── logging_utils.py │ ├── options.py │ ├── request.py │ ├── upload_type.py │ ├── validators.py │ └── versioning_systems.py ├── main.py ├── opentelemetry.py ├── plugins │ ├── __init__.py │ ├── compress_pycoverage_contexts.py │ ├── gcov.py │ ├── pycoverage.py │ ├── types.py │ └── xcode.py ├── runners │ ├── __init__.py │ ├── dan_runner.py │ ├── pytest_standard_runner.py │ └── types.py ├── services │ ├── __init__.py │ ├── commit │ │ ├── __init__.py │ │ └── base_picking.py │ ├── empty_upload │ │ └── __init__.py │ ├── report │ │ └── __init__.py │ ├── upload │ │ ├── __init__.py │ │ ├── file_finder.py │ │ ├── legacy_upload_sender.py │ │ ├── network_finder.py │ │ ├── upload_collector.py │ │ └── upload_sender.py │ ├── upload_completion │ │ └── __init__.py │ └── upload_coverage │ │ └── __init__.py └── types.py ├── codecovcli_commands ├── command_dump.py ├── hooks └── pre-commit ├── install.sh ├── pyproject.toml ├── requirements.txt ├── ruff.toml ├── samples ├── example_cli_config.yml ├── example_module.js ├── fake_project │ ├── .codecov.yaml │ ├── .codecov.yml │ ├── .github │ │ ├── .codecov.yaml │ │ ├── .codecov.yml │ │ ├── codecov.yaml │ │ └── codecov.yml │ ├── codecov.yaml │ ├── codecov.yml │ └── dev │ │ ├── .codecov.yaml │ │ ├── .codecov.yml │ │ ├── codecov.yaml │ │ └── codecov.yml ├── inputs │ ├── sample_001.py │ ├── sample_002.py │ ├── sample_003.js │ ├── sample_004.js │ └── sample_005.py ├── junit.xml └── outputs │ ├── sample_001.json │ ├── sample_002.json │ ├── sample_003.json │ ├── sample_004.json │ └── sample_005.json ├── scripts ├── build_alpine_arm.sh └── build_linux_arm.sh ├── setup.py └── tests ├── __init__.py ├── ci_adapters ├── test_appveyor.py ├── test_azure_pipelines.py ├── test_bitbucket_ci.py ├── test_bitrise.py ├── test_buildkite.py ├── test_circleci.py ├── test_cirrusci.py ├── test_cloudbuild.py ├── test_codebuild.py ├── test_droneci.py ├── test_ghactions.py ├── test_gitlabci.py ├── test_herokuci.py ├── test_jenkins.py ├── test_local.py ├── test_teamcity.py ├── test_travis_ci.py └── test_woodpeckerci.py ├── commands ├── __init__.py ├── test_invoke_empty_upload.py ├── test_invoke_labelanalysis.py ├── test_invoke_upload.py ├── test_invoke_upload_coverage.py ├── test_invoke_upload_process.py ├── test_process_test_results.py └── test_upload_token_discovery.py ├── conftest.py ├── data ├── files_to_fix_examples │ ├── bad_encoding.go │ ├── sample.cpp │ ├── sample.go │ ├── sample.kt │ └── sample.php ├── reports_examples.py └── Контроллеры │ └── Пользователь │ └── ГлавныйКонтроллер.php ├── factory.py ├── helpers ├── git_services │ └── test_github.py ├── test_args.py ├── test_ci_adapter_selection.py ├── test_config.py ├── test_encoder.py ├── test_folder_searcher.py ├── test_git.py ├── test_legacy_upload_sender.py ├── test_network_finder.py ├── test_request.py ├── test_upload_sender.py ├── test_validators.py └── test_versioning_systems.py ├── plugins ├── test_compress_pycoverage_contexts.py ├── test_gcov.py ├── test_instantiation.py ├── test_pycoverage.py └── test_xcode.py ├── requirements.in ├── requirements.txt ├── runners ├── test_dan_runner.py ├── test_pytest_standard_runner.py ├── test_runners.py └── test_types.py ├── services ├── commit │ ├── test_base_picking.py │ └── test_commit_service.py ├── empty_upload │ └── test_empty_upload.py ├── report │ ├── test_report_results.py │ └── test_report_service.py ├── upload │ ├── test_coverage_file_finder.py │ ├── test_upload_collector.py │ └── test_upload_service.py └── upload_completion │ └── test_upload_completion.py ├── test_codecov_cli.py ├── test_helpers.py └── test_types.py /.github/workflows/broadcast_api_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/broadcast_api_changes.yml -------------------------------------------------------------------------------- /.github/workflows/build_assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/build_assets.yml -------------------------------------------------------------------------------- /.github/workflows/build_for_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/build_for_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/ci-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/ci-job.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/create_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/create_release.yml -------------------------------------------------------------------------------- /.github/workflows/create_release_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/create_release_pr.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-license-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/enforce-license-compliance.yml -------------------------------------------------------------------------------- /.github/workflows/release_flow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.github/workflows/release_flow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.pip-tools.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.pip-tools.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - tests/** 3 | -------------------------------------------------------------------------------- /codecov_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/__init__.py -------------------------------------------------------------------------------- /codecov_cli/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_cli/commands/base_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/base_picking.py -------------------------------------------------------------------------------- /codecov_cli/commands/commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/commit.py -------------------------------------------------------------------------------- /codecov_cli/commands/create_report_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/create_report_result.py -------------------------------------------------------------------------------- /codecov_cli/commands/empty_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/empty_upload.py -------------------------------------------------------------------------------- /codecov_cli/commands/get_report_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/get_report_results.py -------------------------------------------------------------------------------- /codecov_cli/commands/labelanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/labelanalysis.py -------------------------------------------------------------------------------- /codecov_cli/commands/process_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/process_test_results.py -------------------------------------------------------------------------------- /codecov_cli/commands/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/report.py -------------------------------------------------------------------------------- /codecov_cli/commands/send_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/send_notifications.py -------------------------------------------------------------------------------- /codecov_cli/commands/staticanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/staticanalysis.py -------------------------------------------------------------------------------- /codecov_cli/commands/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/upload.py -------------------------------------------------------------------------------- /codecov_cli/commands/upload_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/upload_coverage.py -------------------------------------------------------------------------------- /codecov_cli/commands/upload_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/commands/upload_process.py -------------------------------------------------------------------------------- /codecov_cli/fallbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/fallbacks.py -------------------------------------------------------------------------------- /codecov_cli/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_cli/helpers/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/args.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/__init__.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/appveyor_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/appveyor_ci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/azure_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/azure_pipelines.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/base.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/bitbucket_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/bitbucket_ci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/bitrise_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/bitrise_ci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/buildkite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/buildkite.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/circleci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/circleci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/cirrus_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/cirrus_ci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/cloudbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/cloudbuild.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/codebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/codebuild.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/droneci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/droneci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/github_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/github_actions.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/gitlab_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/gitlab_ci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/heroku.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/jenkins.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/local.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/teamcity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/teamcity.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/travis_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/travis_ci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/ci_adapters/woodpeckerci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/ci_adapters/woodpeckerci.py -------------------------------------------------------------------------------- /codecov_cli/helpers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/config.py -------------------------------------------------------------------------------- /codecov_cli/helpers/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/encoder.py -------------------------------------------------------------------------------- /codecov_cli/helpers/folder_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/folder_searcher.py -------------------------------------------------------------------------------- /codecov_cli/helpers/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/git.py -------------------------------------------------------------------------------- /codecov_cli/helpers/git_services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/git_services/__init__.py -------------------------------------------------------------------------------- /codecov_cli/helpers/git_services/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/git_services/github.py -------------------------------------------------------------------------------- /codecov_cli/helpers/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/glob.py -------------------------------------------------------------------------------- /codecov_cli/helpers/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/logging_utils.py -------------------------------------------------------------------------------- /codecov_cli/helpers/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/options.py -------------------------------------------------------------------------------- /codecov_cli/helpers/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/request.py -------------------------------------------------------------------------------- /codecov_cli/helpers/upload_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/upload_type.py -------------------------------------------------------------------------------- /codecov_cli/helpers/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/validators.py -------------------------------------------------------------------------------- /codecov_cli/helpers/versioning_systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/helpers/versioning_systems.py -------------------------------------------------------------------------------- /codecov_cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/main.py -------------------------------------------------------------------------------- /codecov_cli/opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/opentelemetry.py -------------------------------------------------------------------------------- /codecov_cli/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/plugins/__init__.py -------------------------------------------------------------------------------- /codecov_cli/plugins/compress_pycoverage_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/plugins/compress_pycoverage_contexts.py -------------------------------------------------------------------------------- /codecov_cli/plugins/gcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/plugins/gcov.py -------------------------------------------------------------------------------- /codecov_cli/plugins/pycoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/plugins/pycoverage.py -------------------------------------------------------------------------------- /codecov_cli/plugins/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/plugins/types.py -------------------------------------------------------------------------------- /codecov_cli/plugins/xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/plugins/xcode.py -------------------------------------------------------------------------------- /codecov_cli/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/runners/__init__.py -------------------------------------------------------------------------------- /codecov_cli/runners/dan_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/runners/dan_runner.py -------------------------------------------------------------------------------- /codecov_cli/runners/pytest_standard_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/runners/pytest_standard_runner.py -------------------------------------------------------------------------------- /codecov_cli/runners/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/runners/types.py -------------------------------------------------------------------------------- /codecov_cli/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov_cli/services/commit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/commit/__init__.py -------------------------------------------------------------------------------- /codecov_cli/services/commit/base_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/commit/base_picking.py -------------------------------------------------------------------------------- /codecov_cli/services/empty_upload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/empty_upload/__init__.py -------------------------------------------------------------------------------- /codecov_cli/services/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/report/__init__.py -------------------------------------------------------------------------------- /codecov_cli/services/upload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload/__init__.py -------------------------------------------------------------------------------- /codecov_cli/services/upload/file_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload/file_finder.py -------------------------------------------------------------------------------- /codecov_cli/services/upload/legacy_upload_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload/legacy_upload_sender.py -------------------------------------------------------------------------------- /codecov_cli/services/upload/network_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload/network_finder.py -------------------------------------------------------------------------------- /codecov_cli/services/upload/upload_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload/upload_collector.py -------------------------------------------------------------------------------- /codecov_cli/services/upload/upload_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload/upload_sender.py -------------------------------------------------------------------------------- /codecov_cli/services/upload_completion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload_completion/__init__.py -------------------------------------------------------------------------------- /codecov_cli/services/upload_coverage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/services/upload_coverage/__init__.py -------------------------------------------------------------------------------- /codecov_cli/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecov_cli/types.py -------------------------------------------------------------------------------- /codecovcli_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/codecovcli_commands -------------------------------------------------------------------------------- /command_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/command_dump.py -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/install.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/ruff.toml -------------------------------------------------------------------------------- /samples/example_cli_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/example_cli_config.yml -------------------------------------------------------------------------------- /samples/example_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/example_module.js -------------------------------------------------------------------------------- /samples/fake_project/.codecov.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/.codecov.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/.github/.codecov.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/.github/.codecov.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/.github/codecov.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/.github/codecov.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/codecov.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/fake_project/codecov.yml -------------------------------------------------------------------------------- /samples/fake_project/dev/.codecov.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/dev/.codecov.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/dev/codecov.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/fake_project/dev/codecov.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/inputs/sample_001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/inputs/sample_001.py -------------------------------------------------------------------------------- /samples/inputs/sample_002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/inputs/sample_002.py -------------------------------------------------------------------------------- /samples/inputs/sample_003.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/inputs/sample_003.js -------------------------------------------------------------------------------- /samples/inputs/sample_004.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/inputs/sample_004.js -------------------------------------------------------------------------------- /samples/inputs/sample_005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/inputs/sample_005.py -------------------------------------------------------------------------------- /samples/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/junit.xml -------------------------------------------------------------------------------- /samples/outputs/sample_001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/outputs/sample_001.json -------------------------------------------------------------------------------- /samples/outputs/sample_002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/outputs/sample_002.json -------------------------------------------------------------------------------- /samples/outputs/sample_003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/outputs/sample_003.json -------------------------------------------------------------------------------- /samples/outputs/sample_004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/outputs/sample_004.json -------------------------------------------------------------------------------- /samples/outputs/sample_005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/samples/outputs/sample_005.json -------------------------------------------------------------------------------- /scripts/build_alpine_arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/scripts/build_alpine_arm.sh -------------------------------------------------------------------------------- /scripts/build_linux_arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/scripts/build_linux_arm.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ci_adapters/test_appveyor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_appveyor.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_azure_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_azure_pipelines.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_bitbucket_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_bitbucket_ci.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_bitrise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_bitrise.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_buildkite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_buildkite.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_circleci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_circleci.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_cirrusci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_cirrusci.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_cloudbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_cloudbuild.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_codebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_codebuild.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_droneci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_droneci.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_ghactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_ghactions.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_gitlabci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_gitlabci.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_herokuci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_herokuci.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_jenkins.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_local.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_teamcity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_teamcity.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_travis_ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_travis_ci.py -------------------------------------------------------------------------------- /tests/ci_adapters/test_woodpeckerci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/ci_adapters/test_woodpeckerci.py -------------------------------------------------------------------------------- /tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/test_invoke_empty_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/commands/test_invoke_empty_upload.py -------------------------------------------------------------------------------- /tests/commands/test_invoke_labelanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/commands/test_invoke_labelanalysis.py -------------------------------------------------------------------------------- /tests/commands/test_invoke_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/commands/test_invoke_upload.py -------------------------------------------------------------------------------- /tests/commands/test_invoke_upload_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/commands/test_invoke_upload_coverage.py -------------------------------------------------------------------------------- /tests/commands/test_invoke_upload_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/commands/test_invoke_upload_process.py -------------------------------------------------------------------------------- /tests/commands/test_process_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/commands/test_process_test_results.py -------------------------------------------------------------------------------- /tests/commands/test_upload_token_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/commands/test_upload_token_discovery.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/files_to_fix_examples/bad_encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/data/files_to_fix_examples/bad_encoding.go -------------------------------------------------------------------------------- /tests/data/files_to_fix_examples/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/data/files_to_fix_examples/sample.cpp -------------------------------------------------------------------------------- /tests/data/files_to_fix_examples/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/data/files_to_fix_examples/sample.go -------------------------------------------------------------------------------- /tests/data/files_to_fix_examples/sample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/data/files_to_fix_examples/sample.kt -------------------------------------------------------------------------------- /tests/data/files_to_fix_examples/sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/data/files_to_fix_examples/sample.php -------------------------------------------------------------------------------- /tests/data/reports_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/data/reports_examples.py -------------------------------------------------------------------------------- /tests/data/Контроллеры/Пользователь/ГлавныйКонтроллер.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/data/Контроллеры/Пользователь/ГлавныйКонтроллер.php -------------------------------------------------------------------------------- /tests/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/factory.py -------------------------------------------------------------------------------- /tests/helpers/git_services/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/git_services/test_github.py -------------------------------------------------------------------------------- /tests/helpers/test_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_args.py -------------------------------------------------------------------------------- /tests/helpers/test_ci_adapter_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_ci_adapter_selection.py -------------------------------------------------------------------------------- /tests/helpers/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_config.py -------------------------------------------------------------------------------- /tests/helpers/test_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_encoder.py -------------------------------------------------------------------------------- /tests/helpers/test_folder_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_folder_searcher.py -------------------------------------------------------------------------------- /tests/helpers/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_git.py -------------------------------------------------------------------------------- /tests/helpers/test_legacy_upload_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_legacy_upload_sender.py -------------------------------------------------------------------------------- /tests/helpers/test_network_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_network_finder.py -------------------------------------------------------------------------------- /tests/helpers/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_request.py -------------------------------------------------------------------------------- /tests/helpers/test_upload_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_upload_sender.py -------------------------------------------------------------------------------- /tests/helpers/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_validators.py -------------------------------------------------------------------------------- /tests/helpers/test_versioning_systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/helpers/test_versioning_systems.py -------------------------------------------------------------------------------- /tests/plugins/test_compress_pycoverage_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/plugins/test_compress_pycoverage_contexts.py -------------------------------------------------------------------------------- /tests/plugins/test_gcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/plugins/test_gcov.py -------------------------------------------------------------------------------- /tests/plugins/test_instantiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/plugins/test_instantiation.py -------------------------------------------------------------------------------- /tests/plugins/test_pycoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/plugins/test_pycoverage.py -------------------------------------------------------------------------------- /tests/plugins/test_xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/plugins/test_xcode.py -------------------------------------------------------------------------------- /tests/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/requirements.in -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/runners/test_dan_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/runners/test_dan_runner.py -------------------------------------------------------------------------------- /tests/runners/test_pytest_standard_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/runners/test_pytest_standard_runner.py -------------------------------------------------------------------------------- /tests/runners/test_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/runners/test_runners.py -------------------------------------------------------------------------------- /tests/runners/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/runners/test_types.py -------------------------------------------------------------------------------- /tests/services/commit/test_base_picking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/commit/test_base_picking.py -------------------------------------------------------------------------------- /tests/services/commit/test_commit_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/commit/test_commit_service.py -------------------------------------------------------------------------------- /tests/services/empty_upload/test_empty_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/empty_upload/test_empty_upload.py -------------------------------------------------------------------------------- /tests/services/report/test_report_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/report/test_report_results.py -------------------------------------------------------------------------------- /tests/services/report/test_report_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/report/test_report_service.py -------------------------------------------------------------------------------- /tests/services/upload/test_coverage_file_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/upload/test_coverage_file_finder.py -------------------------------------------------------------------------------- /tests/services/upload/test_upload_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/upload/test_upload_collector.py -------------------------------------------------------------------------------- /tests/services/upload/test_upload_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/upload/test_upload_service.py -------------------------------------------------------------------------------- /tests/services/upload_completion/test_upload_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/services/upload_completion/test_upload_completion.py -------------------------------------------------------------------------------- /tests/test_codecov_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/test_codecov_cli.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/codecov-cli/HEAD/tests/test_types.py --------------------------------------------------------------------------------