Skip to content

Commit a80034a

Browse files
author
Release Manager
committed
gh-35632: Use fixed random-seed in the "Build & Test" CI <!-- Please provide a concise, informative and self-explanatory title. --> <!-- Don't put issue numbers in the title. Put it in the Description below. --> <!-- For example, instead of "Fixes #12345", use "Add a new method to multiply two integers" --> ### 📚 Description Related to #35522 and #35544. Should at least fix the changed codecov between runs. <!-- Describe your changes here in detail. --> <!-- Why is this change required? What problem does it solve? --> <!-- 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. It should be `[x]` not `[x ]`. --> - [x] The title is concise, informative, and self-explanatory. - [x] 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: #35632 Reported by: Tobias Diez Reviewer(s): Matthias Köppe
2 parents 43c7f50 + aba447a commit a80034a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Build & Test
33
on:
44
pull_request:
55
push:
6+
branches: ['**']
7+
# Ignore pushes on tags to prevent two uploads of codecov reports
8+
tags-ignore: ['**']
69
workflow_dispatch:
710
# Allow to run manually
811
inputs:
@@ -91,7 +94,7 @@ jobs:
9194
if: always() && steps.build.outcome == 'success'
9295
run: |
9396
../sage -python -m pip install coverage
94-
../sage -python -m coverage run ./bin/sage-runtests --all -p2
97+
../sage -python -m coverage run ./bin/sage-runtests --all -p2 --random-seed=286735480429121101562228604801325644303
9598
working-directory: ./src
9699

97100
- name: Prepare coverage results

0 commit comments

Comments
 (0)