Re: [Django] #23923: Promote Django's deprecation warnings to errors in runtests.py

2014-11-29 Thread Django
#23923: Promote Django's deprecation warnings to errors in runtests.py
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  Cleanup/optimization  |   Status:  closed
Component:  Testing framework |  Version:  master
 Severity:  Normal|   Resolution:  fixed
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by Tim Graham ):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 In [changeset:"3131e9cef5f0a96f4fe667b0b1626c238153d1f1"]:
 {{{
 #!CommitTicketReference repository=""
 revision="3131e9cef5f0a96f4fe667b0b1626c238153d1f1"
 Fixed #23923 -- Promoted Django's deprecation warnings to errors in
 runtests.py
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.e7bc2e8b741de89095e781fb295598a5%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #23923: Promote Django's deprecation warnings to errors in runtests.py

2014-11-28 Thread Django
#23923: Promote Django's deprecation warnings to errors in runtests.py
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  Cleanup/optimization  |   Status:  new
Component:  Testing framework |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * has_patch:  0 => 1


Comment:

 [https://github.com/django/django/pull/3626 PR] is ready for review.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.68fe986688989e01c598cfbfccc00873%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #23923: Promote Django's deprecation warnings to errors in runtests.py

2014-11-26 Thread Django
#23923: Promote Django's deprecation warnings to errors in runtests.py
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  Cleanup/optimization  |   Status:  new
Component:  Testing framework |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by charettes):

 * stage:  Unreviewed => Accepted


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.2bfeae7f33f8b46042cbf361a0e50723%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #23923: Promote Django's deprecation warnings to errors in runtests.py

2014-11-26 Thread Django
#23923: Promote Django's deprecation warnings to errors in runtests.py
+
   Reporter:  timgraham |  Owner:  nobody
   Type:  Cleanup/optimization  | Status:  new
  Component:  Testing framework |Version:  master
   Severity:  Normal|   Keywords:
   Triage Stage:  Unreviewed|  Has patch:  0
Needs documentation:  0 |Needs tests:  0
Patch needs improvement:  0 |  Easy pickings:  0
  UI/UX:  0 |
+
 The Django test suite should run without any visible deprecation warnings.

 By changing:
 {{{
 warnings.simplefilter("default", RemovedInDjango19Warning)
 warnings.simplefilter("default", RemovedInDjango20Warning)
 }}}
 to:
 {{{
 warnings.simplefilter("error", RemovedInDjango19Warning)
 warnings.simplefilter("error", RemovedInDjango20Warning)
 }}}
 in `runtests.py` we can have Jenkins (which runs with -Wall) fail builds
 that introduce unsilenced deprecation warnings. This will save us time
 from having to track them down after the fact.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.5191397b9c85b39f521bb84887ff5193%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.