Skip to content

Commit f2de251

Browse files
authored
Updated check script paths (#9052)
1 parent 84855d1 commit f2de251

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.coveragerc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@ exclude_also =
1818

1919
[run]
2020
omit =
21-
Tests/32bit_segfault_check.py
22-
Tests/check_*.py
21+
checks/*.py
2322
Tests/createfontdatachunk.py

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ debug:
7575

7676
.PHONY: release-test
7777
release-test:
78-
python3 Tests/check_release_notes.py
78+
python3 checks/check_release_notes.py
7979
python3 -m pip install -e .[tests]
8080
python3 selftest.py
8181
python3 -m pytest Tests

checks/check_jpeg_leaks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
When run on a system without the jpeg leak fixes,
1414
the valgrind runs look like this.
1515
16-
valgrind --tool=massif python test-installed.py -s -v Tests/check_jpeg_leaks.py
16+
valgrind --tool=massif python test-installed.py -s -v checks/check_jpeg_leaks.py
1717
1818
"""
1919

codecov.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ coverage:
1616

1717
# Matches 'omit:' in .coveragerc
1818
ignore:
19-
- "Tests/32bit_segfault_check.py"
20-
- "Tests/check_*.py"
19+
- "checks/*.py"
2120
- "Tests/createfontdatachunk.py"

0 commit comments

Comments
 (0)