diff options
author | Clément Pit--Claudel <clement.pitclaudel@live.com> | 2015-08-18 09:12:55 -0700 |
---|---|---|
committer | Clément Pit--Claudel <clement.pitclaudel@live.com> | 2015-08-18 09:12:55 -0700 |
commit | 045ee27da6435a6262edbada4f7911b2f3ff45b8 (patch) | |
tree | 63f77e17eb1940805f58243fcb26ebb73dbdac87 /Test | |
parent | 6ed47f5d08cc266afab92795599290d029a39c86 (diff) |
Exclude folders named 'sandbox' from lit tests
Diffstat (limited to 'Test')
-rw-r--r-- | Test/lit.site.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/lit.site.cfg b/Test/lit.site.cfg index c5718f86..2d57d389 100644 --- a/Test/lit.site.cfg +++ b/Test/lit.site.cfg @@ -22,7 +22,7 @@ config.suffixes = ['.dfy'] # excludes: A list of directories to exclude from the testsuite. The 'Inputs' # subdirectories contain auxiliary inputs for various tests in their parent # directories. -config.excludes = ['Inputs'] +config.excludes = ['Inputs', 'sandbox'] # test_source_root: The root path where tests are located. config.test_source_root = os.path.dirname(os.path.abspath(__file__)) |