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

MNT: Ignore any candidate tests within output/benchmark/input data

directories, in case any of those are contained within the test directories
parent 356d9567
No related branches found
No related tags found
1 merge request!38MNT: Ignore any candidate tests within output/benchmark/input data directories
......@@ -62,6 +62,7 @@ upon which sub-command the user has specified:
import os.path as op
import os
import pathlib as pl
import sys
import logging
import fnmatch
......@@ -226,10 +227,20 @@ class Pyfeeds:
testDirs = functools.reduce(lambda a, b: a + b, testDirs)
testDirs = sorted(set(testDirs))
testDirs = [op.abspath(td) for td in testDirs]
if len(testDirs) == 0:
return []
# Do not consider anything within the
# input, benchmark, or output directories
indir = pl.Path(op.abspath(self.inputDir))
bmdir = pl.Path(op.abspath(self.benchmarkDir))
outdir = pl.Path(op.abspath(self.outputDir))
testDirs = [td for td in testDirs if indir not in pl.Path(td).parents]
testDirs = [td for td in testDirs if bmdir not in pl.Path(td).parents]
testDirs = [td for td in testDirs if outdir not in pl.Path(td).parents]
# Find the deepest directory in
# the file system which contains
# all of the detected tests.
......
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