Updated check script paths (#9052)

This commit is contained in:
Andrew Murray 2025-07-01 15:17:56 +10:00 committed by GitHub
parent 84855d11c8
commit f2de251c76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 6 deletions

View File

@ -18,6 +18,5 @@ exclude_also =
[run]
omit =
Tests/32bit_segfault_check.py
Tests/check_*.py
checks/*.py
Tests/createfontdatachunk.py

View File

@ -75,7 +75,7 @@ debug:
.PHONY: release-test
release-test:
python3 Tests/check_release_notes.py
python3 checks/check_release_notes.py
python3 -m pip install -e .[tests]
python3 selftest.py
python3 -m pytest Tests

View File

@ -13,7 +13,7 @@ iterations = 5000
When run on a system without the jpeg leak fixes,
the valgrind runs look like this.
valgrind --tool=massif python test-installed.py -s -v Tests/check_jpeg_leaks.py
valgrind --tool=massif python test-installed.py -s -v checks/check_jpeg_leaks.py
"""

View File

@ -16,6 +16,5 @@ coverage:
# Matches 'omit:' in .coveragerc
ignore:
- "Tests/32bit_segfault_check.py"
- "Tests/check_*.py"
- "checks/*.py"
- "Tests/createfontdatachunk.py"