Skip to content
Snippets Groups Projects
Commit f6e21711 authored by Maurice Zimmnau's avatar Maurice Zimmnau
Browse files

some small corrections

parent a2e887a3
No related branches found
No related tags found
No related merge requests found
Pipeline #1626336 passed with warnings
......@@ -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
......
......@@ -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')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment