mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Exclude only "test" and "tests" folders from build process
This commit is contained in:
@ -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)
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
])
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user