From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Fri, 18 Oct 2019 16:53:38 -0400 Subject: [U-Boot] [PATCH 10/10] HACK: test.py: Disable EFI tests for now In-Reply-To: <20191018205338.14879-1-trini@konsulko.com> References: <20191018205338.14879-1-trini@konsulko.com> Message-ID: <20191018205338.14879-11-trini@konsulko.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de When running these tests currently we see both warnings about how escape sequences need to be updated and then we see failures of some tests related to finding expected strings and so forth. It seems quite likely that these tests need work to function with Python 3 and it's better unicode support. Disable them for now only to make testing of other Python 3 conversions easier. Cc: Heinrich Schuchardt Signed-off-by: Tom Rini --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2528a5a9a2e4..29d25e9de5c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -233,7 +233,7 @@ qemu_arm test.py: tags: [ 'all' ] variables: TEST_PY_BD: "qemu_arm" - TEST_PY_TEST_SPEC: "not sleep" + TEST_PY_TEST_SPEC: "not sleep and not efi" BUILDMAN: "^qemu_arm$" <<: *buildman_and_testpy_dfn @@ -241,7 +241,7 @@ qemu_arm64 test.py: tags: [ 'all' ] variables: TEST_PY_BD: "qemu_arm64" - TEST_PY_TEST_SPEC: "not sleep" + TEST_PY_TEST_SPEC: "not sleep and not efi" BUILDMAN: "^qemu_arm64$" <<: *buildman_and_testpy_dfn @@ -289,7 +289,7 @@ qemu-riscv64 test.py: tags: [ 'all' ] variables: TEST_PY_BD: "qemu-riscv64" - TEST_PY_TEST_SPEC: "not sleep" + TEST_PY_TEST_SPEC: "not sleep and not efi" BUILDMAN: "^qemu-riscv64$" <<: *buildman_and_testpy_dfn @@ -297,7 +297,7 @@ qemu-x86 test.py: tags: [ 'all' ] variables: TEST_PY_BD: "qemu-x86" - TEST_PY_TEST_SPEC: "not sleep" + TEST_PY_TEST_SPEC: "not sleep and not efi" BUILDMAN: "^qemu-x86$" <<: *buildman_and_testpy_dfn @@ -305,7 +305,7 @@ qemu-x86_64 test.py: tags: [ 'all' ] variables: TEST_PY_BD: "qemu-x86_64" - TEST_PY_TEST_SPEC: "not sleep" + TEST_PY_TEST_SPEC: "not sleep and not efi" BUILDMAN: "^qemu-x86_64$" <<: *buildman_and_testpy_dfn -- 2.17.1