mirror of
https://github.com/sharkdp/bat.git
synced 2025-04-04 18:00:35 +01:00
Make highlight tests fail when new syntaxes don't have fixtures
This commit is contained in:
parent
b13c4d5f8d
commit
9272e09058
@ -7,6 +7,7 @@
|
|||||||
- Fix `BAT_THEME_DARK` and `BAT_THEME_LIGHT` being ignored, see issue #3171 and PR #3168 (@bash)
|
- Fix `BAT_THEME_DARK` and `BAT_THEME_LIGHT` being ignored, see issue #3171 and PR #3168 (@bash)
|
||||||
- Prevent `--list-themes` from outputting default theme info to stdout when it is piped, see #3189 (@einfachIrgendwer0815)
|
- Prevent `--list-themes` from outputting default theme info to stdout when it is piped, see #3189 (@einfachIrgendwer0815)
|
||||||
- Rename some submodules to fix Dependabot submodule updates, see issue #3198 and PR #3201 (@victor-gp)
|
- Rename some submodules to fix Dependabot submodule updates, see issue #3198 and PR #3201 (@victor-gp)
|
||||||
|
- Make highlight tests fail when new syntaxes don't have fixtures PR #3255 (@dan-hipschman)
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
|
|
||||||
|
@ -12,13 +12,15 @@ def compare_highlighted_versions(root_old, root_new):
|
|||||||
print(" -", root_old)
|
print(" -", root_old)
|
||||||
print(" -", root_new)
|
print(" -", root_new)
|
||||||
has_changes = False
|
has_changes = False
|
||||||
|
# Used to check for newly added files that don't have a test
|
||||||
|
unknown_files = {strip_root(p) for p in glob.glob(path.join(root_new, "*", "*"))}
|
||||||
|
|
||||||
for path_old in glob.glob(path.join(root_old, "*", "*")):
|
for path_old in glob.glob(path.join(root_old, "*", "*")):
|
||||||
filename = path.basename(path_old)
|
rel_path = strip_root(path_old)
|
||||||
dirname = path.basename(path.dirname(path_old))
|
unknown_files.discard(rel_path)
|
||||||
|
path_new = path.join(root_new, rel_path)
|
||||||
|
|
||||||
path_new = path.join(root_new, dirname, filename)
|
print("\n========== {}".format(rel_path))
|
||||||
|
|
||||||
print("\n========== {}/{}".format(dirname, filename))
|
|
||||||
|
|
||||||
with open(path_old) as file_old:
|
with open(path_old) as file_old:
|
||||||
lines_old = file_old.readlines()
|
lines_old = file_old.readlines()
|
||||||
@ -39,11 +41,21 @@ def compare_highlighted_versions(root_old, root_new):
|
|||||||
has_changes = True
|
has_changes = True
|
||||||
else:
|
else:
|
||||||
print("No changes")
|
print("No changes")
|
||||||
print()
|
|
||||||
|
|
||||||
|
for f in unknown_files:
|
||||||
|
print("\n========== {}: No fixture for this language, run update.sh".format(f))
|
||||||
|
has_changes = True
|
||||||
|
|
||||||
|
print()
|
||||||
return has_changes
|
return has_changes
|
||||||
|
|
||||||
|
|
||||||
|
def strip_root(p: str) -> str:
|
||||||
|
filename = path.basename(p)
|
||||||
|
dirname = path.basename(path.dirname(p))
|
||||||
|
return path.join(dirname, filename)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
description="This script compares two directories that were created "
|
description="This script compares two directories that were created "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user