mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-31 02:27:13 +02:00
Exclude "test*" folder by default from build process
This commit is contained in:
@ -23,6 +23,7 @@ PlatformIO 2.0
|
|||||||
(`issue #465 <https://github.com/platformio/platformio/issues/465>`_)
|
(`issue #465 <https://github.com/platformio/platformio/issues/465>`_)
|
||||||
* Set 1Mb SPIFFS for Espressif boards by default
|
* Set 1Mb SPIFFS for Espressif boards by default
|
||||||
(`issue #458 <https://github.com/platformio/platformio/issues/458>`_)
|
(`issue #458 <https://github.com/platformio/platformio/issues/458>`_)
|
||||||
|
* Exclude ``test*`` folder by default from build process
|
||||||
* Fixed builder for mbed framework and ST STM32 platform
|
* Fixed builder for mbed framework and ST STM32 platform
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,7 +27,8 @@ from platformio.util import pioversion_to_intstr
|
|||||||
SRC_BUILD_EXT = ["c", "cpp", "S", "spp", "SPP", "sx", "s", "asm", "ASM"]
|
SRC_BUILD_EXT = ["c", "cpp", "S", "spp", "SPP", "sx", "s", "asm", "ASM"]
|
||||||
SRC_HEADER_EXT = ["h", "hpp"]
|
SRC_HEADER_EXT = ["h", "hpp"]
|
||||||
SRC_DEFAULT_FILTER = " ".join([
|
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
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user