Re: testing tutorial feedback needed! (was: Testing documentation)

2012-12-02 Thread Aymeric Augustin
Le 1 déc. 2012 à 09:19, James Pic a écrit : > - would it be useful to mention that if the app lives in a separate (ie. open > source) repo, it will need the repo to contain a test_project to run > `./manage.py test theapp` in CI systems ? Yes, it's a good practice to

Re: testing tutorial feedback needed! (was: Testing documentation)

2012-12-02 Thread Aymeric Augustin
Hi Tim, I just reviewed the online version at http://techytim.com/django/9962/intro/tutorial05.html and I found it very clear. Here are a few suggestions to make it even better. Some don't fit well in inline comments, so I wrote an email instead; I hope you don't mind. The "Why you need to

Re: Blocker for 1.5 - representation of filesystem paths in Django

2012-12-02 Thread Karen Tracey
My preference is for option 2: convert file system paths to unicode and use unicode internally as much as possible. This is consistent with what we have been doing/recommending for years, even if it is at odds with Python's default for 2.X. See for example:

Re: Blocker for 1.5 - representation of filesystem paths in Django

2012-12-02 Thread Aymeric Augustin
Hi Russell, > I've had a look at the patches for (1) and (2), and to me, the look like > mirror images of the same patch -- it's just a matter of whether we convert > everything to bytes or unicode when we have the opportunity. > My immediate reaction is that (2) -- keeping everything in