Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc: Disable PlatformIO ESP8266 Tests #87

Merged
merged 2 commits into from
May 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

### Changed

- improved Windows support ([#83])

## [0.3.1] - 2019-02-19
Expand Down
19 changes: 10 additions & 9 deletions test/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ build_flags = -I../test/iot/ -I../src -I../src/lib -I../src/include/cpp-crypto -
src_filter = +<*> -<.git/> -<examples/> -<extras> -<bin> -<lib> -<_3rdParty> -<CMakeFiles> -<src/CMakeFiles> -<test/CMakeFiles> -<src/lib/ArduinoJson> -<src/lib/bip39> -<src/lib/uECC> -<test/lib/googletest>
upload_speed = 921600

[env:esp8266]
platform = espressif8266
board = huzzah
framework = arduino
lib_ldf_mode = ${common.lib_ldf_mode}
lib_deps = ${common.lib_deps}
build_flags = ${common.build_flags}
src_filter = ${common.src_filter}
upload_speed = ${common.upload_speed}
# esp8266 unit tests disabled until support is worked out
#[env:esp8266]
#platform = espressif8266
#board = huzzah
#framework = arduino
#lib_ldf_mode = ${common.lib_ldf_mode}
#lib_deps = ${common.lib_deps}
#build_flags = ${common.build_flags}
#src_filter = ${common.src_filter}
#upload_speed = ${common.upload_speed}

[env:esp32]
platform = espressif32
Expand Down