Merge branch 'bugfix/ci_app_test_dependency' into 'master'

CI: correct example vs. custom tests dependency

See merge request espressif/esp-idf!8258
This commit is contained in:
Anton Maklakov
2020-04-09 14:02:13 +08:00
4 changed files with 5 additions and 5 deletions

View File

@@ -217,6 +217,7 @@ build_examples_cmake_esp32s2:
- $BOT_LABEL_BUILD
- $BOT_LABEL_INTEGRATION_TEST
- $BOT_LABEL_REGULAR_TEST
- $BOT_LABEL_CUSTOM_TEST
- $BOT_LABEL_WEEKEND_TEST
script:
- mkdir -p ${BUILD_PATH}

View File

@@ -98,7 +98,6 @@
variables:
- $BOT_TRIGGER_WITH_LABEL == null
- $BOT_LABEL_CUSTOM_TEST
- $BOT_LABEL_EXAMPLE_TEST
variables:
TEST_FW_PATH: "$CI_PROJECT_DIR/tools/tiny-test-fw"
TEST_CASE_PATH: "$CI_PROJECT_DIR/tools/test_apps"

View File

@@ -131,7 +131,7 @@ class TlsServer:
@ttfw_idf.idf_custom_test(env_tag="Example_WIFI", group="test-apps")
def test_examples_protocol_mqtt_publish_connect(env, extra_data):
def test_app_protocol_mqtt_publish_connect(env, extra_data):
"""
steps:
1. join AP
@@ -227,4 +227,4 @@ def test_examples_protocol_mqtt_publish_connect(env, extra_data):
if __name__ == '__main__':
test_examples_protocol_mqtt_publish_connect()
test_app_protocol_mqtt_publish_connect()