Compare commits

..

2 Commits

Author SHA1 Message Date
6eae7c7b98 Merge pull request '#191_tests' (#201) from #191_tests into dev
All checks were successful
Test before pr merge / test-lint (pull_request) Successful in 9s
Build on push / prepare (push) Successful in 25s
Test before pr merge / test (pull_request) Successful in 27s
Build on push / query (push) Successful in 49s
Build on push / core (push) Successful in 50s
Build on push / cli (push) Successful in 44s
Build on push / dependency (push) Successful in 45s
Build on push / database (push) Successful in 17s
Build on push / application (push) Successful in 17s
Build on push / mail (push) Successful in 18s
Build on push / translation (push) Successful in 18s
Build on push / auth (push) Successful in 1m7s
Build on push / api (push) Successful in 16s
Reviewed-on: #201
2026-01-16 16:21:25 +01:00
638434af76 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
2026-01-16 16:20:41 +01:00

View File

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