Opened 10 years ago

Closed 10 years ago

Last modified 10 years ago

#23072 closed Bug (fixed)

Release tarball is missing django/contrib/formtools/tests/wizard/wizardtests/templates/other_wizard_form.html

Reported by: Raphaël Hertzog Owned by: nobody
Component: Packaging Version: 1.7-rc-1
Severity: Release blocker Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

And since the file is missing the test suite is failing in django.contrib.formtools.tests.wizard.wizardtests.tests.WizardTestKwargs.test_template with a "TemplateDoesNotExist: other_wizard_form.html" exception.

A simple fix is:

$ git diff
diff --git a/MANIFEST.in b/MANIFEST.in
index 01aa49a..cbd641c 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -24,6 +24,7 @@ recursive-include django/contrib/auth/tests/templates *
 recursive-include django/contrib/comments/templates *
 recursive-include django/contrib/formtools/templates *
 recursive-include django/contrib/formtools/tests/templates *
+recursive-include django/contrib/formtools/tests/wizard/wizardtests/templates *
 recursive-include django/contrib/flatpages/fixtures *
 recursive-include django/contrib/flatpages/tests/templates *
 recursive-include django/contrib/gis/static *

The problem also exists on the master branch.

Attachments (1)

0001-Fix-23072-add-django-contrib-formtools-tests-wizard-.patch (983 bytes ) - added by Raphaël Hertzog 10 years ago.

Download all attachments as: .zip

Change History (3)

comment:1 by Claude Paroz <claude@…>, 10 years ago

Resolution: fixed
Status: newclosed

In a2d0831e4242b97e0378414c4379ad8d3030ed6e:

Fixed #23072 -- Added missing formtools test templates in tarball

The lack of this file breaks the test suite.

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

In 2c6ef625ad73c38769f086733356e37a938b69c3:

[1.7.x] Fixed #23072 -- Added missing formtools test templates in tarball

The lack of this file breaks the test suite.
Backport of a2d0831e42 from master.

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