Open
Conversation
Codecov Report
@@ Coverage Diff @@
## master #36 +/- ##
==========================================
- Coverage 91.81% 90.54% -1.27%
==========================================
Files 11 10 -1
Lines 403 402 -1
==========================================
- Hits 370 364 -6
- Misses 33 38 +5
Continue to review full report at Codecov.
|
- Stop running unit tests on pushes to every branch; only run them on (a) pushes to master or (b) pull requests. - Stop running unit tests on nightly (since they don't provide much useful information and fail too often). - Only run unit tests on Linux so that we don't go outside of GitHub Action's usage limits.
a15078d to
4383abd
Compare
Fix the doctests to handle a change between Julia 1.5 and 1.6 where
one-dimensional arrays like Array{1} and BitArray{1} are displayed in
the REPL output as "Vector" and "BitVector".
a89437c to
dc50b96
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR changes the GitHub Actions configuration so that we're only running unit tests on Ubuntu for the latest (non-nightly) version of Julia, and only on (a) pushes to master or (b) pull requests. This should make the CI pipeline less error-prone, but should also guarantee we don't run afoul of GitHub Actions' usage limits.
This PR also fixes some of the doctests that were broken by Julia 1.6.