-
Notifications
You must be signed in to change notification settings - Fork 1
/
fabfile.py
35 lines (24 loc) · 945 Bytes
/
fabfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
Creating standalone Django apps is a PITA because you're not in a project, so
you don't have a settings.py file. I can never remember to define
DJANGO_SETTINGS_MODULE, so I run these commands which get the right env
automatically.
"""
import functools
import os
from fabric.api import local as _local
NAME = os.path.basename(os.path.dirname(__file__))
ROOT = os.path.abspath(os.path.dirname(__file__))
APP_NAME = 'test_utilities'
os.environ['DJANGO_SETTINGS_MODULE'] = 'test_app.settings'
os.environ['PYTHONPATH'] = os.pathsep.join([ROOT,])
_local = functools.partial(_local, capture=False)
def shell():
"""Start a Django shell with the test settings."""
_local('django-admin.py shell')
def test(args=''):
"""Run the test suite."""
_local('django-admin.py test %s' % args)
def test_coverage():
_local('coverage run --source=%s --omit=*/migrations/*.py '
'$(which django-admin.py) test' % APP_NAME)