From 198187a106c1e8740d19aef2aaddbde39219581a Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 1 May 2021 18:07:15 -0700 Subject: [PATCH] rename generate-configuration-table.py to be importable Silences a Pylint warning. --- .gitlab-ci.yml | 8 ++++---- ...iguration-table.py => generate_configuration_table.py} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename ci/{generate-configuration-table.py => generate_configuration_table.py} (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 793427e0c..b35f71096 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -486,10 +486,10 @@ meta-data: stage: test script: - CONFIGURE_LOGS=Metadata/*/*/*/configure.log - - ci/generate-configuration-table.py --output-format html ${CONFIGURE_LOGS} > configuration-long-no-color.html - - ci/generate-configuration-table.py --output-format html --short ${CONFIGURE_LOGS} > configuration-short-no-color.html - - ci/generate-configuration-table.py --output-format html --short --color ${CONFIGURE_LOGS} > configuration-short-color-green-red.html - - ci/generate-configuration-table.py --output-format html --short --colors black:red ${CONFIGURE_LOGS} > configuration-short-color-red-only.html + - ci/generate_configuration_table.py --output-format html ${CONFIGURE_LOGS} > configuration-long-no-color.html + - ci/generate_configuration_table.py --output-format html --short ${CONFIGURE_LOGS} > configuration-short-no-color.html + - ci/generate_configuration_table.py --output-format html --short --color ${CONFIGURE_LOGS} > configuration-short-color-green-red.html + - ci/generate_configuration_table.py --output-format html --short --colors black:red ${CONFIGURE_LOGS} > configuration-short-color-red-only.html artifacts: paths: - configuration-*.html diff --git a/ci/generate-configuration-table.py b/ci/generate_configuration_table.py similarity index 100% rename from ci/generate-configuration-table.py rename to ci/generate_configuration_table.py -- 2.40.0