summaryrefslogtreecommitdiff
path: root/tools/dircondenser.py
AgeCommit message (Collapse)Author
2023-11-12Handle dupe number in test renumberer.Jussi Pakkanen
2022-01-02Fix files in the unittests subdir.Jussi Pakkanen
2021-06-29fix: Always explicitly set encoding for text files (fixes #8263)Daniel Mensinger
2021-03-04mass rewrite of string formatting to use f-strings everywhereEli Schwartz
performed by running "pyupgrade --py36-plus" and committing the results
2021-03-04various python neatness cleanupsEli Schwartz
All changes were created by running "pyupgrade --py3-only --keep-percent-format" and committing the results. I have not touched string formatting for now. - use set literals - simplify .format() parameter naming - remove __future__ - remove default "r" mode for open() - use OSError rather than compatibility aliases - remove stray parentheses in function(generator) scopes
2020-09-08typing: fully annotate toolsDaniel Mensinger
2020-04-30Update dircondenser.py tool to update paths in test.json as wellJon Turney
Update dircondenser.py tool to update paths appearing in the expected stdout in test.json when the containing directory is renamed.
2020-01-08types: import typing as T (fixes #6333)Daniel Mensinger
2019-11-07CI: add initial type annotation checkingMichael Hirsch, Ph.D
2018-09-13Fix flake8 whitespace reportsJon Turney
$ flake8 | grep -E '(E203|E221|E226|E303|W291|W293)' ./mesonbuild/build.py:964:5: E303 too many blank lines (2) ./tools/dircondenser.py:70:36: E221 multiple spaces before operator
2018-07-31Add script to condense test directory names.Jussi Pakkanen