Merge pull request #918 from tcely/patch-15

Log more details about what `pipenv` installs
This commit is contained in:
meeb 2025-04-03 16:06:20 +11:00 committed by GitHub
commit 1a636efa70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --system --skip-lock
PIPENV_VERBOSITY=64 pipenv install --system --skip-lock
- name: Set up Django environment
run: |
cp -v -p tubesync/tubesync/local_settings.py.example tubesync/tubesync/local_settings.py

View File

@ -138,7 +138,7 @@ class FrontEndTestCase(TestCase):
else:
# Invalid source tests should reload the page with an error
self.assertEqual(response.status_code, 200)
self.assertIn('<ul class="errorlist">',
self.assertIn('<ul class="errorlist"',
response.content.decode())
def test_add_source_prepopulation(self):