Re: Add verbosity option to manage.py checks that outputs which checks are ran

2020-06-10 Thread Adam Johnson
Perhaps there could be better on guidance in the documentation about registering custom checks. I see nothing in the "writing your own checks" guide really describes a recommended code structure. We'd accept a docs PR there I'm sure. I normally have a checks submodule in my app and register the ch

Re: Add verbosity option to manage.py checks that outputs which checks are ran

2020-06-10 Thread Gordon
Particular case that spurred this - reusable app had checks to make sure urls were reversible. Checks weren't imported. Checks command passes but doesn't run the apps checks. There is no indication that the checks were not run so you have to assume they did and were successful. The app check

Re: I need a mentor on django

2020-06-10 Thread Onayemi Hakeem
Okay if that is the case I agreed I've been in the wrong mailing list can you please add or refer to a platform where I can be mentored, or assisted whenever I ran into problems using django On Wed, Jun 10, 2020, 17:11 Adam Johnson wrote: > Hi! > > I think you've found the wrong mailing list for

Re: I need a mentor on django

2020-06-10 Thread patels.manit
Hi You can ask me for help On Wednesday, June 10, 2020 at 9:27:29 PM UTC+5:30, Onayemi Hakeem wrote: > > I need a mentor who can guide me on my Django programming skill to develop > my dream app -- You received this message because you are subscribed to the Google Groups "Django developers

Re: I need a mentor on django

2020-06-10 Thread Adam Johnson
Hi! I think you've found the wrong mailing list for this post. This mailing list is for discussing the development of Django itself, not for support using Django. This means the discussions of bugs and features in Django itself, rather than in your code using it. People on this list are unlikely t

Re: Add verbosity option to manage.py checks that outputs which checks are ran

2020-06-10 Thread Adam Johnson
I am with Mariusz. Displaying the names of the check functions is a bit against the intention of the checks framework. The check ID's are intended to be enough information to reference the problem. This is different to unit tests, where the function names are intended to carry information. Django

I need a mentor on django

2020-06-10 Thread Onayemi Hakeem
I need a mentor who can guide me on my Django programming skill to develop my dream app -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, sen

Add verbosity option to manage.py checks that outputs which checks are ran

2020-06-10 Thread Gordon
This is a discussion for https://code.djangoproject.com/ticket/31681 - the feature would be useful to me and seems like something generally useful as well since it is implemented in the testing framework. The closing comment mentions that copying a documentation page into command output isn't