Opened 16 years ago
Closed 16 years ago
#7728 closed (fixed)
Test output checking overly detailed
Reported by: | Maciej Fijalkowski | Owned by: | nobody |
---|---|---|---|
Component: | Uncategorized | Version: | dev |
Severity: | Keywords: | ||
Cc: | fijall@… | Triage Stage: | Unreviewed |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
There is a test in admin scripts that relies that file is loaded from .pyc. This fails on top of pypy and IMO it's not a good thing to have in the first place. Attached patch.
Attachments (1)
Change History (3)
by , 16 years ago
comment:1 by , 16 years ago
Cc: | added |
---|
comment:2 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [7915]) Fixed #7728 -- Modified the output check in the admin script tests. Checking for pyc is a CPython-specific check, and it breaks CPython if pyc files aren't generated (due to permission problems, etc). Thanks to Maciej Fijalkowski (fijal) for the report and fix.