Exclude only "test" and "tests" folders from build process

This commit is contained in:
Ivan Kravets
2016-01-29 17:25:31 +02:00
parent 8c0bcc6ad9
commit c9616ed0fa
3 changed files with 7 additions and 2 deletions

View File

@ -4,6 +4,11 @@ Release Notes
PlatformIO 2.0
--------------
2.8.2 (2016-01-??)
~~~~~~~~~~~~~~~~~~
* Exclude only ``test`` and ``tests`` folders from build process
2.8.1 (2016-01-29)
~~~~~~~~~~~~~~~~~~

View File

@ -14,7 +14,7 @@
import sys
VERSION = (2, 8, 1)
VERSION = (2, 8, "2.dev0")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -28,7 +28,7 @@ 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,
"-<test*%s>" % sep
"-<test%s>" % sep, "-<tests%s>" % sep
])