From f6e217118ffd4ca8d796865d728aa9d44ad18394 Mon Sep 17 00:00:00 2001 From: Maurice <zimmnau@ilr.rwth-aachen.de> Date: Tue, 25 Feb 2025 18:20:23 +0100 Subject: [PATCH] some small corrections --- .ci-scripts/run-integration-test.yml | 5 +---- .ci-scripts/utils/evaluate_designEvaluator_results.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.ci-scripts/run-integration-test.yml b/.ci-scripts/run-integration-test.yml index e66dc086..cb258423 100644 --- a/.ci-scripts/run-integration-test.yml +++ b/.ci-scripts/run-integration-test.yml @@ -48,10 +48,7 @@ run-integration-test: - ./${DIR_DESIGN_EVALUATOR} ## - Compare results - cd ${CI_PROJECT_DIR} && cp ${CI_PROJECT_DIR}/.ci-scripts/utils/evaluate_designEvaluator_results.py . - - | - python3 evaluate_designEvaluator_results.py \ - --file ${DIR_DESIGN_EVALUATOR}/design_evaluator_report.html \ - || EXIT_CODE=$? + - python3 evaluate_designEvaluator_results.py --file ${DIR_DESIGN_EVALUATOR}/design_evaluator_report.html || EXIT_CODE=$? ## Cleanup - if [ -d "${DIR_UNICADO}" ]; then rm -rf ${DIR_UNICADO}; fi diff --git a/.ci-scripts/utils/evaluate_designEvaluator_results.py b/.ci-scripts/utils/evaluate_designEvaluator_results.py index 9ab90bc0..9c9bf004 100644 --- a/.ci-scripts/utils/evaluate_designEvaluator_results.py +++ b/.ci-scripts/utils/evaluate_designEvaluator_results.py @@ -9,7 +9,7 @@ import sys def check_html_file(html_file): # Load and parse the HTML file with BeautifulSoup with open(html_file, 'r') as file: - soup = BeautifulSoup(file, 'lxml') + soup = BeautifulSoup(file, 'html.parser') # Find all tables in the HTML file (in case there are multiple) tables = soup.find_all('table') -- GitLab