Update .gitea/workflows/test.yml
Run Pytest and Generate Reports / tests (push) Failing after 21s

This commit is contained in:
2025-07-07 15:09:18 +02:00
parent 30946164ea
commit 55900599ea
+9 -1
View File
@@ -19,11 +19,19 @@ jobs:
export PATH="$HOME/.pixi/bin:$PATH"
pixi install
- name: Install Allure CLI
run: |
wget https://github.com/allure-framework/allure2/releases/latest/download/allure-2.27.0.tgz
tar -xzf allure-2.27.0.tgz
sudo mv allure-2.27.0 /opt/allure
sudo ln -s /opt/allure/bin/allure /usr/local/bin/allure
allure --version
- name: Run tests and generate reports
run: |
export PATH="$HOME/.pixi/bin:$PATH"
pixi run pytest --cov=slic --cov-report=xml --cov-report=html --alluredir=allure-results
pixi run allure generate allure-results -o allure-report
allure generate allure-results -o allure-report
- name: Copy reports to ci-reports/
run: |