File tree 2 files changed +2
-1
lines changed 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 25
25
base="$(git merge-base "origin/$GITHUB_BASE_REF" 'HEAD^2')"
26
26
am="$(git log "$base..HEAD^2" --pretty=tformat: --name-status --diff-filter=AM |
27
27
cut --fields 2 | sort | uniq --repeated |
28
- grep -E ' .(png|pdf|ps|eps|svg)' || true)"
28
+ grep '\ -E .(png|pdf|ps|eps|svg)' || true)"
29
29
if [[ -n "$am" ]]; then
30
30
printf 'The following images were both added and modified in this PR:\n%s\n' "$am"
31
31
exit 1
Original file line number Diff line number Diff line change @@ -268,6 +268,7 @@ def test_fontcache_thread_safe():
268
268
f"{ proc .returncode } ." )
269
269
270
270
271
+ @pytest .mark .skipif (sys .platform == 'win32' , reason = 'Linux or OS only' )
271
272
def test_get_font_list ():
272
273
paths_mpl = [cbook ._get_data_path ('fonts' , subdir ) for subdir in ['ttf' ]]
273
274
fonts_mpl = findSystemFonts (paths_mpl , fontext = 'ttf' )
You can’t perform that action at this time.
0 commit comments