Opened 7 years ago

Closed 7 years ago

#27695 closed Cleanup/optimization (invalid)

Development testing instructions do not work

Reported by: Jeff Willette Owned by: nobody
Component: Uncategorized Version: 1.10
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Jeff Willette)

The current development test running instructions do not work and lead to errors.

I propose that the instructions be changed to this...

$ git clone git@…:YourGitHubName/django.git django-repo
$ cd django-repo/
$ pip install -e ..
$ pip install -r tests/requirements/py3.txt # Python 2: py2.txt
$ cp tests/test_sqlite.py ./settings.py
$ PYTHONPATH=pwd ./tests/runtests.py --settings=settings

Proposed change in https://github.com/django/django/pull/7801

Change History (3)

comment:1 by Jeff Willette, 7 years ago

Description: modified (diff)
Has patch: set

comment:2 by Jeff Willette, 7 years ago

Description: modified (diff)

comment:3 by Jeff Willette, 7 years ago

Resolution: invalid
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top