Skip to content

Commit 6022af6

Browse files
committed
tests: update tests for shared test data updates
1 parent 7eb7e79 commit 6022af6

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

testdata

Submodule testdata updated 332 files

tests/misc.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ def __init__(self):
3535
self._config = Config()
3636

3737
# load repos
38-
for path in sorted(glob.glob(f"{DATADIR}/repos/*")):
39-
if not path.endswith("-invalid"):
40-
self._config.add_repo(path, id=os.path.basename(path), external=False)
38+
for path in sorted(glob.glob(f"{DATADIR}/repos/valid/*")):
39+
self._config.add_repo(path, id=os.path.basename(path), external=False)
4140

4241
# load toml files
4342
self._toml = {}

0 commit comments

Comments
 (0)