Pin django version in tox docs

This commit is contained in:
Iacopo Spalletti 2017-12-31 13:56:23 +01:00
commit a66371fc92
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6
3 changed files with 7 additions and 5 deletions

View file

@ -20,8 +20,9 @@ import shlex
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath('../tests'))
parent = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
sys.path.insert(0, parent)
sys.path.insert(0, os.path.join(parent, 'tests'))
import cms_helper
import djangocms_blog