From e08c8a32c0fb22004654427b7dcb80b2c33f0fad Mon Sep 17 00:00:00 2001 From: tligui_y Date: Mon, 7 Jul 2025 13:30:45 +0200 Subject: [PATCH] Delete .github/workflows/test.yml --- .github/workflows/test.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 694e6f588..000000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Run Pytest with Pixi and generate Allure & Coverage - -on: - push: - branches: [ utils_testing ] - pull_request: - -jobs: - tests: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Install Pixi - run: | - curl -fsSL https://pixi.sh/install.sh | bash - export PATH="$HOME/.pixi/bin:$PATH" - pixi install - - - name: Run tests with coverage and allure - run: | - export PATH="$HOME/.pixi/bin:$PATH" - pixi run pytest --cov=slic --cov-report=xml --cov-report=html --alluredir=allure-results - - - name: Upload Allure results - uses: actions/upload-artifact@v4 - with: - name: allure-results - path: allure-results/ - - - name: Upload Coverage HTML report - uses: actions/upload-artifact@v4 - with: - name: coverage-html - path: htmlcov/