Fixed test action installation
All checks were successful
Test before pr merge / test-lint (pull_request) Successful in 17s
Test before pr merge / test (pull_request) Successful in 31s

This commit is contained in:
2026-01-16 16:10:02 +01:00
parent c18777656c
commit 638434af76
2 changed files with 31 additions and 21 deletions

View File

@@ -35,9 +35,16 @@ jobs:
token: ${{ secrets.CI_ACCESS_TOKEN }}
- name: Setting up Python 3.12
shell: bash
run: |
python3.12 -m pip install -r src/requirements-dev.txt
python3.12 -m venv venv
source venv/bin/activate
bash ./install.sh
bash ./install.sh -dev
python3.12 -m pip install pytest
- name: Testing with pytest
shell: bash
run: |
source venv/bin/activate
python3.12 -m pytest