Opened 11 years ago

Closed 11 years ago

#22237 closed Bug (fixed)

Warnings when running the test suite

Reported by: Aymeric Augustin Owned by: Claude Paroz
Component: Uncategorized Version: dev
Severity: Release blocker Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

With Python 2.7 and SQLite, python -Wall runtests.py reports:

django/core/management/commands/loaddata.py:224: UserWarning: No fixture named 'db_fixture_1' found.
  warnings.warn("No fixture named '%s' found." % fixture_name)
django/db/utils.py:228: RemovedInDjango19Warning: In Django 1.9 the TEST_NAME connection setting will be moved to a NAME entry in the TEST setting
  self.prepare_test_settings(alias)

Change History (2)

comment:1 by Claude Paroz, 11 years ago

Owner: changed from nobody to Claude Paroz
Status: newassigned
Triage Stage: UnreviewedAccepted

comment:2 by Claude Paroz <claude@…>, 11 years ago

Resolution: fixed
Status: assignedclosed

In c564277937a1f0b78b2c2b701e6381319d9685c2:

Fixed #22237 -- Removed some warnings in the test suite

Thanks Aymeric Augustin for the report.

Note: See TracTickets for help on using tickets.
Back to Top