Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Code for the API of Codecov

License

NotificationsYou must be signed in to change notification settings

codecov/codecov-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

We believe that everyone should have access to quality software (like Sentry), that’s why we have always offered Codecov for free to open source maintainers.

By making our code public, we’re not only joining the community that’s supported us from the start — but also want to make sure that every developer can contribute to and build on the Codecov experience.

A private Django REST Framework API intended to serve Codecov's front end.

Getting Started

Building

This project contains a makefile. To build the docker image:

make build

requirements.txt is used in the base image. If you make changes torequirements.txt you will need to rebuild.

Note, you'll need to install Rust to buildribs which is a dependency ofshared. Go here for more info on how to do this:https://www.rust-lang.org/tools/install

Running Standalone

This project contains adocker-compose.yml file that is intended to run the api standalone. In this configuration itdoes not share codecov.io's development database; so don't expect parity there.

To start the service, do

docker-compose up

Utilizing its own database provides a convenient way for the REST API to provide its own helpful seeds and migrations for active development without potentially destroying/modifying your development database for codecov.io.

Once running, the api will be available athttp://localhost:5100

Running with codecov.io

This service will startup when you run codecov.io normally. It is under thatapi block of codecov.io'sdocker-compose.yml file.

Testing

The easiest way to run tests (that doesn't require installing postgres and other dependencies) is to run inside of docker:

docker-compose updocker exec -it codecov-api_api_1 pytest -rf --no-migrations

Testing standalone

If you would like to use pytest directly (Either through an IDE like PyCharm or with the CLI), you will need to change the settings file used by pytest. Run this command to have the tests executed (You will need an instance of postgres running locally):

RUN_ENV=TESTING DJANGO_SETTINGS_MODULE=codecov.settings_test pytest

Make sure to have all the latest dependencies installed viauv sync.

Deploying

All work merged into themain branch is immediately deployed to the production environment. More context on this strategy can be foundhere.

Deploying to Staging environment

To deploy to our staging environment it's crucial to follow these steps:

  1. Check in Slack to see if anyone is currently using the staging environment
  2. If not, delete the currentstaging branch
  3. Create a newstaging branch and merge your feature branch into it

Steps 2 and 3 are important to limit interaction between features not yet merged intomain. This approach was inspired by this document:https://codecovio.atlassian.net/wiki/spaces/ENG/pages/507445249/Branching+and+Continuous+Delivery+Strategy+Proposal

Secret and Credential Management

This project should store no secrets or credentials in its source. If you need to add to / modify / setup secrets for this project, contact Eli and he'll get you started..

Adding dependencies

This repository usesuv to manage dependencies, so make sure you've installed it withpip install uv. To add or update dependencies, simply runuv add __package_name__ oruv sync.

Formatting

This project usesruff for formatting.
You can run the linter using the commandmake lint_local.

Migrations

We leverage Django's migration system to keep the state of our models in sync with the state of our database. You can read more about how we work with migrations athttps://codecovio.atlassian.net/wiki/spaces/ENG/pages/1696530442/Migrations

Contributing

This repository, like all of Codecov's repositories, strives to follow our generalContributing guidlines. If you're considering making a contribution to this repository, we encourage review of our Contributing guidelines first.


[8]ページ先頭

©2009-2025 Movatter.jp