Skip to content

Commit 0a69c2a

Browse files
author
Release Manager
committed
gh-36678: CI conda: Ignore baseline test failures <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes #1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> <!-- Why is this change required? What problem does it solve? --> This makes the CI conda pass by marking affected files as "known baseline failures", thus reducing the noise that this workflow makes on PRs (including #36666 (comment)) Less intrusive version of #36372. In addition to the failure marked there, here we collect a number of more failures observed over the course of a week in https://github.com/sagemath/sage/actions/workflows/ci- conda.yml?query=is%3Acompleted <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #36678 Reported by: Matthias Köppe Reviewer(s): Kwankyu Lee, Tobias Diez
2 parents 2017233 + 3c2edf3 commit 0a69c2a

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"sage_setup.clean": {
3+
"failed": true
4+
},
5+
"sage.combinat.cluster_algebra_quiver.quiver": {
6+
"failed": true
7+
},
8+
"sage.geometry.cone": {
9+
"failed": true
10+
},
11+
"sage.groups.matrix_gps.finitely_generated_gap": {
12+
"failed": true
13+
},
14+
"sage.interfaces.expect": {
15+
"failed": true
16+
},
17+
"sage.libs.gap.element": {
18+
"failed": true
19+
},
20+
"sage.libs.singular.singular": {
21+
"failed": true
22+
},
23+
"sage.matrix.matrix2": {
24+
"failed": true
25+
},
26+
"sage.matrix.matrix_integer_sparse": {
27+
"failed": true
28+
},
29+
"sage.misc.lazy_import": {
30+
"failed": true
31+
},
32+
"sage.misc.weak_dict": {
33+
"failed": true
34+
},
35+
"sage.modular.modform.l_series_gross_zagier": {
36+
"failed": true
37+
},
38+
"sage.rings.function_field.drinfeld_modules.morphism": {
39+
"failed": true
40+
},
41+
"sage.rings.polynomial.multi_polynomial_ideal": {
42+
"failed": true
43+
},
44+
"sage.rings.polynomial.multi_polynomial_libsingular": {
45+
"failed": true
46+
},
47+
"sage.rings.polynomial.skew_polynomial_finite_field": {
48+
"failed": true
49+
},
50+
"sage.tests.gap_packages": {
51+
"failed": true
52+
}
53+
}

.github/workflows/ci-conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- name: Test
9393
if: success() || failure()
9494
shell: bash -l {0}
95-
run: ./sage -t --all -p0
95+
run: ./sage -t --all --baseline-stats-path=.github/workflows/ci-conda-known-test-failures.json -p0
9696

9797
- name: Print logs
9898
if: always()

0 commit comments

Comments
 (0)