-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add: new page overviewing CI #165
Open
lwasser
wants to merge
6
commits into
pyOpenSci:main
Choose a base branch
from
lwasser:ci
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5e20463
Fix: add initial tests content to guide
lwasser 953440b
Fix: edits from @namurphy
lwasser be11293
Fix: conf.py updates
lwasser fff6865
Fix: review fixes from Trevor
lwasser 06cc7e7
Fix: edits from @willingc to ci page
lwasser 33a61e8
Fix: force to main
lwasser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# What is continuous integration? | ||
|
||
When you’re ready to publish your code online, you can setup Continuous Integration (CI). CI is a platform that allows you to specify and run jobs or workflows that you define. | ||
These workflows include: | ||
|
||
- Running your test suite | ||
- Running code checkers / linters / spellcheck | ||
- Building your documentation | ||
- Deploying your documentation to GitHub pages | ||
|
||
CI allows you to automate running workflows across a suite of environments including: | ||
|
||
- environments containing different Python versions and | ||
- different operating systems (Mac, Linux, Windows). | ||
|
||
### What is Continuous Deployment (CD)? | ||
|
||
Continuous deployment (CD) extends the CI process by automating the deployment of code changes to production or staging environments. In the case of your open source tool, CD can be used to: | ||
|
||
- Automate publishing to PyPI | ||
- Automate publishing your documentation to GitHub Pages or Read the Docs. | ||
|
||
It is also used once your conda-forge recipe is set up to keep your package up to date on conda-forge. | ||
|
||
### Why Use CI | ||
|
||
CI can be configured to run a workflow on every commit pushed to GitHub and every pull request opened. This ensures that any changes made to your package are tested across environments before they are merged into the main branch of your code. | ||
|
||
These checks are particularly useful if someone new is contributing to your code. Every change a contributor makes will be tested when it’s pushed to your code repository. | ||
|
||
Together, CI and CD streamline the process of building, testing, and deploying code. They aim to improve the efficiency, quality, and reliability of software development and publication. | ||
|
||
```{note} | ||
All pyOpenSci packages must use some form of continuous integration. Even if you are not planning to go through peer review, we strongly recommend that you use continuous integration too! | ||
``` | ||
|
||
In the case of GitHub actions (which we will focus on here), CI workflows are running on online servers that support GitHub. | ||
|
||
## CI / CD Platforms | ||
|
||
There are numerous platforms available for CI/CD. Here, we will focus on GitHub Actions (GHA) which is built into GitHub. GitHub is the most commonly used platform to store scientific open source software. | ||
|
||
:::{note} | ||
If you are using [GitLab](https://about.gitlab.com/) CI/CD many of the principles described here will apply, however the workflow files may look different. | ||
::: | ||
|
||
### If you aren't sure, use GitHub Actions | ||
|
||
While you are welcome to use the continuous integration platform of your choice, | ||
we recommend GitHub Actions because it is free-to-use and integrated tightly | ||
into the GitHub user interface. There is also an entire store of GitHub action | ||
templates that you can easily use and adapt to your own needs. | ||
|
||
:::{admonition} Other platforms that you may run into | ||
:class: info | ||
|
||
- [Appveyor:](https://www.appveyor.com/): Supports running tests on Windows operating systems and predated the release of GitHub Actions. Today, AppVeyor supports operating systems beyond Windows. | ||
- [Travis CI:](https://www.travis-ci.com/) had been a common CI platform choice in our ecosystem. Usage dropped after Travis CI ended free support for open-source projects. | ||
- [CircleCI:](https://circleci.com/) CircleCI can be useful for automated builds of websites and documentation since it offers a preview of the PR changes. | ||
::: | ||
|
||
## Embrace automation | ||
|
||
By embracing CI/CD, you can ensure that your code runs as you expect it to across the diverse landscapes of user environments. Further you can | ||
automate certain checks (and in some cases code fixes) including linting and code style. You can even automate spell checking your documentation | ||
and docstrings! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Continuous Integration and Data for your package | ||
|
||
|
||
:::{toctree} | ||
:hidden: | ||
:caption: CI & Data | ||
|
||
|
||
What is CI? <ci.md> | ||
Data <data.md> | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Code coverage for your Python package test suite | ||
|
||
Code coverage is the amount of your package's codebase that is run as a part of running your project's tests. A good rule of thumb is to ensure that every line of your code is run at least once during testing. However, note that good code coverage does not guarantee that your package is well-tested. For example, you may run all of your lines of code, but not account for many edge-cases that users may have. Ultimately, you should think carefully about the way your package will be used, and decide whether your tests adequately cover all of that usage. | ||
|
||
Some common services for analyzing code coverage are [codecov.io](https://codecov.io/) and [coveralls.io](https://coveralls.io/). These projects are free for open source tools, and will provide dashboards that tell you how much of your codebase is covered during your tests. We recommend setting up an account (on either CodeCov or Coveralls), and using it to keep track of your code coverage. | ||
|
||
```{figure} ../images/code-cov-stravalib.png | ||
:height: 450px | ||
:alt: Screenshot of the code cov service - showing test coverage for the stravalib package. in this image you can see a list of package modules and the associated number of lines and % lines covered by tests. at the top of the image you can see what branch is being evaluated and the path to the repository being shown. | ||
|
||
The CodeCov platform is a useful tool if you wish to visually track code coverage. Using it you can not only get the same summary information that you can get with **pytest-cov** extension. You can also get a visual representation of what lines are covered by your tests and what lines are not covered. Code coverage is mostly useful for evaluating unit tests and/or how much of your package code is "covered". It however will not evaluate things like integration tests and end-to-end workflows. | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes space for a CI&data section in our navigation.