From 51f20c6e7c73efd3062b6fbc1754ea4811ffa199 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Fri, 12 May 2017 12:30:27 +1000 Subject: [PATCH] gen_esp32part: Run unit tests on host as part of gitlab-ci --- .gitlab-ci.yml | 9 +++++++++ .../gen_esp32part_tests.py | 0 2 files changed, 9 insertions(+) rename components/partition_table/{tests => test_gen_esp32part_host}/gen_esp32part_tests.py (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f6447d4b..d732458a8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -151,6 +151,15 @@ test_nvs_on_host: - cd components/nvs_flash/test_nvs_host - make test +test_partition_table_on_host: + stage: test + image: $CI_DOCKER_REGISTRY/esp32-ci-env + tags: + - build + script: + - cd components/partition_table/test_gen_esp32part_host + - ./gen_esp32part_tests.py + test_wl_on_host: stage: test image: $CI_DOCKER_REGISTRY/esp32-ci-env diff --git a/components/partition_table/tests/gen_esp32part_tests.py b/components/partition_table/test_gen_esp32part_host/gen_esp32part_tests.py similarity index 100% rename from components/partition_table/tests/gen_esp32part_tests.py rename to components/partition_table/test_gen_esp32part_host/gen_esp32part_tests.py