Skip to content
Snippets Groups Projects
Commit 7e2f5e2d authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

BF: Typos

parent f9fee253
No related branches found
No related tags found
1 merge request!38MNT: Ignore any candidate tests within output/benchmark/input data directories
Pipeline #26623 passed
......@@ -236,9 +236,9 @@ class Pyfeeds:
# input, benchmark, or output directories
def filterOut(dirs, filterDir):
if filterDir is None:
return
return dirs
fdir = pl.Path(op.abspath(filterDir))
return [td for td in dirs if pdir not in pl.Path(td).parents]
return [td for td in dirs if fdir not in pl.Path(td).parents]
testDirs = filterOut(testDirs, self.outputDir)
testDirs = filterOut(testDirs, self.benchmarkDir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment