We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7475a8 commit b44172cCopy full SHA for b44172c
.github/workflows/ci.yml
@@ -33,6 +33,7 @@ jobs:
33
- name: Checkout repo
34
uses: actions/checkout@v4
35
with:
36
+ submodules: true
37
fetch-depth: 0 # We want access to other branches, specifically `main`
38
- name: pip install
39
run: |
tools/maint/rebaseline_tests.py
@@ -112,7 +112,8 @@ def main():
112
'''
113
114
for file in filenames:
115
- message += process_changed_file(file)
+ if os.path.isfile(file):
116
+ message += process_changed_file(file)
117
118
message += f'\nAverage change: {statistics.mean(all_deltas):+.2f}% ({min(all_deltas):+.2f}% - {max(all_deltas):+.2f}%)\n'
119
0 commit comments