actually fix coverage.py this time

This commit is contained in:
Alex Bates 2020-08-20 17:11:03 +01:00
parent 325fec679c
commit f708590e44
No known key found for this signature in database
GPG Key ID: 5E11C2DB78877706

View File

@ -7,8 +7,8 @@ import re
from glob import glob
DIR = path.dirname(__file__)
C_FILES = glob(path.join(DIR, "../src/*.c"))
ASM_FILES = glob(path.join(DIR, "../asm/nonmatchings/**/*.s"))
C_FILES = glob(path.join(DIR, "src/*.c"))
ASM_FILES = glob(path.join(DIR, "asm/nonmatchings/**/*.s"))
def strip_c_comments(text):
def replacer(match):