From 3cc9a8c3a9c8c3d29a996912bb867945390ea6a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20R=2E=20Sede=C3=B1o?= Date: Fri, 12 Nov 2021 21:23:52 -0500 Subject: [PATCH] Github Actions - pin coverage to 5.5 Coverage 6.0+ does not get along with django-haystack, importing haystack before django is configured. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a68fa34..1cdc316 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,7 +65,7 @@ jobs: - name: Install Django and other Python dependencies run: | python -m pip install --upgrade pip - pip install django~=${{ matrix.django-version }} coveralls xapian*.whl + pip install django~=${{ matrix.django-version }} coverage~=5.5 coveralls xapian*.whl - name: Checkout django-haystack uses: actions/checkout@v2