Update .gitea/workflows/test.yml
Run Pytest and Serve Report via LocalTunnel / tests (push) Failing after 50s

This commit is contained in:
2025-07-08 14:23:53 +02:00
parent 02e8357a07
commit 9e7240fe43
+3 -9
View File
@@ -41,20 +41,14 @@ jobs:
--alluredir=allure-results || true
allure generate allure-results -o ci-reports/allure --clean || true
- name: Install pytest-md-report
- name: Generate Markdown report
run: |
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install pytest-md-report
source venv/bin/activate && pytest --md-report=ci-reports/markdown/static-report.md || true
- name: Generate Markdown report
run: |
pip install pytest pytest-md-report
mkdir -p ci-reports/markdown
export PATH="$HOME/.pixi/bin:$PATH"
pixi run pytest --md-report=ci-reports/markdown/static-report.md
pytest --md-report=ci-reports/markdown/static-report.md
- name: Commit and push markdown report to Gitea
run: |