#29729 closed Bug (fixed)
Update contributing tutorial to recommend running tests on master
Reported by: | Adam Johnson | Owned by: | Adam Johnson |
---|---|---|---|
Component: | Documentation | Version: | 2.1 |
Severity: | Normal | Keywords: | |
Cc: | Adam Johnson | Triage Stage: | Ready for checkin |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
As discussed recently on the django-core-mentorship list (link for those who can see it: https://groups.google.com/d/msg/django-core-mentorship/SawVLIt2ntk/MvuwLUaUAwAJ ), there are some test failures now when following the "Rolling back to a previous revision of Django" section of this tutorial. The reporter found failures with a new GEOS version (for an issue fixed on django master a year ago), and I found test failures with Python 3.7 because the given commit is from Django 1.9.
I suggest two changes:
- Encourage running the test suite on master before hitting this section - any commit we pick to 'roll back to' is going
- Update to a recent commit and ticket
Change History (8)
comment:1 by , 6 years ago
Cc: | added |
---|---|
Owner: | changed from | to
Status: | new → assigned |
comment:2 by , 6 years ago
Triage Stage: | Unreviewed → Accepted |
---|---|
Type: | Uncategorized → Bug |
The tutorial: Writing your first patch for Django.
One option would be to provide a pinned set of requirements, so that users create a virtualenv in a a known state, compatible with the ticket/Django commit picked.
comment:3 by , 6 years ago
Sure. It would be a lot of requirements though, and other bitrot can still take place like Python and Pip versions incompatibilities.
comment:4 by , 6 years ago
Yes, as you say. 🙂
- Happy for you to suggest what you think is best.
- Not sure ‘'anything’’ would survive without maintanence indefinitely.
comment:5 by , 6 years ago
Has patch: | set |
---|---|
Summary: | Update "Writing your first patch for Django" tutorial → Update contributing tutorial to recommend running tests on master |
Triage Stage: | Accepted → Ready for checkin |
I suspect moving to a later commit isn't a great idea as it'll just be a moving target. I suggest instead some kind of "fake feature" in the tutorial to implement, such as adding a new function to django.init. This would also require less knowledge of the specifics of whatever real tickets are touching, e.g. the current one is a fairly niche forms feature. Thoughts anyone?