Re: Unable to run tests with git bisect run

2016-12-01 Thread Baptiste Mispelon
Hi, You need to put the `PYTHONPATH=...` thing at the beginning of the line, like so: PYTHONPATH=..:$PYTHONPATH git bisect run ./runtests.py flattened-prefetch Baptiste On 12/01/2016 04:46 PM, Vimarsh Chaturvedi wrote: Hey folks, This is the first time I'm trying to contribute to

Re: Unable to run tests with git bisect run

2016-12-01 Thread Tim Graham
Hi, Try to get the tests working in a virtual environment as described in https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/ so you don't need the PYTHONPATH stuff. If you need help, join the #django-dev IRC channel. Thanks for contributing. On Thursday,

Unable to run tests with git bisect run

2016-12-01 Thread Vimarsh Chaturvedi
Hey folks, This is the first time I'm trying to contribute to Django. I am working on ticket #27554 . In the comments, there was a link posted to "Bisecting the exact commit that introduced the regression