From 2bb75a03dae2dccaae3b0adce533e0caf6262384 Mon Sep 17 00:00:00 2001 From: srisailamkakurala Date: Sun, 29 Dec 2024 06:39:47 +0530 Subject: [PATCH] fix #1831 --- .github/workflows/tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 278ff62c6..28173926f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,7 +39,7 @@ jobs: python-version: "${{ matrix.python-version }}" - name: Install dependencies run: | - python -m pip install --upgrade pip setuptools coveralls "tox<5" "tox-gh-actions<4" + python -m pip install --upgrade pip setuptools coveralls "tox<5" "tox-gh-actions<4" stripe django - name: Set up databases run: | PGPASSWORD="postgres" createuser -U postgres -d djangoproject --superuser -h localhost @@ -60,10 +60,6 @@ jobs: echo '"trac_db_host": "localhost", ' >> conf/secrets.json echo '"trac_db_password": "secret", ' >> conf/secrets.json echo '"secret_key": "a"}' >> conf/secrets.json - - name: Install Django - run: | - python -m pip install django - - name: Run collectstatic with ManifestStaticFilesStorage env: DJANGO_SETTINGS_MODULE: "djangoproject.settings.dev"