Modify ↓
Ticket #204 (closed defect: fixed)
SKIP_SOUTH_TESTS is being ignored
| Reported by: | marcin@… | Owned by: | andrew |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.6 |
| Component: | commands | Version: | 0.6-pre |
| Keywords: | Cc: |
Description
South ignores the SKIP_SOUTH_TEST setting due to missing import.
See south.tests.init.py, it contains the lines:
try:
skiptest = settings.SKIP_SOUTH_TESTS
except:
skiptest = False
but does not import settings, so the assignment raises an error and assigns skiptest = False every time.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

Fixed in [a12068f44f46].