Skip to content

Commit

Permalink
Merge pull request #579 from m4rc1e/fix-tests
Browse files Browse the repository at this point in the history
fix ci
  • Loading branch information
m4rc1e authored Jun 24, 2022
2 parents 76d5378 + f611847 commit d69574b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bin/gftools-test-gf-coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
nam_dir)


NAM_DIR = os.path.join(nam_dir, "GF Glyph Sets")
NAM_FILES = [os.path.join(NAM_DIR, f)
for f in os.listdir(NAM_DIR)
NAM_FILES = [f for f in os.listdir(nam_dir)
if f.endswith(".nam")]


Expand All @@ -34,7 +32,7 @@ def main():

expected = set()
for nam_file in NAM_FILES:
nam_filepath = os.path.join(NAM_DIR, nam_file)
nam_filepath = os.path.join(nam_dir, nam_file)
expected.update(CodepointsInNamelist(nam_filepath))

filename = sys.argv[1]
Expand Down

0 comments on commit d69574b

Please sign in to comment.