Exclude "test*" folder by default from build process

This commit is contained in:
Ivan Kravets
2016-01-26 13:02:33 +02:00
parent 9db5a7e004
commit 34d5358eaa
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -27,7 +27,8 @@ from platformio.util import pioversion_to_intstr
SRC_BUILD_EXT = ["c", "cpp", "S", "spp", "SPP", "sx", "s", "asm", "ASM"]
SRC_HEADER_EXT = ["h", "hpp"]
SRC_DEFAULT_FILTER = " ".join([
"+<*>", "-<.git%s>" % sep, "-<svn%s>" % sep, "-<example*%s>" % sep
"+<*>", "-<.git%s>" % sep, "-<svn%s>" % sep, "-<example*%s>" % sep,
"-<test*%s>" % sep
])