gitea-actions: Use pdm sync instead of install
Some checks failed
Ruff / ruff (push) Successful in 22s
Test / test (push) Failing after 3m50s

This commit is contained in:
Adam Goldsmith 2024-02-17 13:56:59 -05:00
parent 4a0ccdb8bc
commit aec64ea5f3

View File

@ -30,6 +30,6 @@ jobs:
sudo apt-get update &&
sudo apt-get -y install build-essential python3-dev libldap2-dev libsasl2-dev mariadb-client
- name: Install python dependencies
run: pdm install
run: pdm sync -d
- name: Run tests
run: pdm run ./manage.py test --parallel auto
run: pdm run -v ./manage.py test --parallel auto