From 835de0ae467b98ab306c89c6cc39eb1fc15df575 Mon Sep 17 00:00:00 2001 From: lagertonne Date: Mon, 11 Nov 2024 21:08:48 +0100 Subject: [PATCH] fix python module installation --- .forgejo/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/testing.yml b/.forgejo/workflows/testing.yml index d53c269..f25d585 100644 --- a/.forgejo/workflows/testing.yml +++ b/.forgejo/workflows/testing.yml @@ -16,7 +16,7 @@ jobs: cache: 'pip' - name: Install needed python modules working-directory: core - run: cd core && pip3 install -r requirements.prod.txt + run: cd core && pip install -r requirements.prod.txt - name: Run django tests working-directory: core run: python3 -m manage.py test