From 067db5f2a05fc25a182d5166d1010c8eaff058c1 Mon Sep 17 00:00:00 2001 From: Bryan Strassner Date: Fri, 22 Feb 2019 15:43:08 -0600 Subject: [PATCH] [FIX] Fix document build Adds the SLUGIFY_USES_TEXT_UNIDECODE=yes option to the appropriate tox jobs to allow document builds/regeneration of directories occur in alignment with license requirements Change-Id: Ie0d25183e6759d1ae48aa45c504479e1d0592d52 --- src/bin/shipyard_airflow/tox.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bin/shipyard_airflow/tox.ini b/src/bin/shipyard_airflow/tox.ini index 67bdfd8d..119f9591 100644 --- a/src/bin/shipyard_airflow/tox.ini +++ b/src/bin/shipyard_airflow/tox.ini @@ -49,13 +49,19 @@ commands = bandit -r shipyard_airflow -n 5 [testenv:genconfig] +setenv= + SLUGIFY_USES_TEXT_UNIDECODE=yes commands = oslo-config-generator --config-file=generator/config-generator.conf [testenv:genpolicy] +setenv= + SLUGIFY_USES_TEXT_UNIDECODE=yes commands = oslopolicy-sample-generator --config-file=generator/policy-generator.conf [testenv:gen_all] # Combined to make these run together instead of setting up separately +setenv= + SLUGIFY_USES_TEXT_UNIDECODE=yes commands = oslo-config-generator --config-file=generator/config-generator.conf oslopolicy-sample-generator --config-file=generator/policy-generator.conf