Reoganize project to reflect final usage
This commit is contained in:
parent
709f6db6ef
commit
9494a5ceac
15 changed files with 9 additions and 9 deletions
12
Makefile
12
Makefile
|
@ -4,16 +4,16 @@ deps:
|
||||||
@pip install -r requirements.txt
|
@pip install -r requirements.txt
|
||||||
|
|
||||||
sandbox_run:
|
sandbox_run:
|
||||||
@env PYTHONPATH=$$PYTHONPATH:vows:. python vows/sandbox/manage.py runserver
|
@env PYTHONPATH=sandbox:.:$$PYTHONPATH python sandbox/manage.py runserver
|
||||||
|
|
||||||
sandbox_shell:
|
sandbox_shell:
|
||||||
@env PYTHONPATH=$$PYTHONPATH:vows:. python vows/sandbox/manage.py shell
|
@env PYTHONPATH=sandbox:.:$$PYTHONPATH python sandbox/manage.py shell
|
||||||
|
|
||||||
pyvows:
|
pyvows:
|
||||||
@env PYTHONPATH=$$PYTHONPATH:vows/sandbox/:. pyvows -c -l django_pyvows --profile-threshold 95 vows/
|
@env PYTHONPATH=sandbox:.:$$PYTHONPATH pyvows -c -l django_pyvows --profile-threshold 95 vows/
|
||||||
|
|
||||||
ci_test:
|
ci_test: db
|
||||||
@env PYTHONPATH=$$PYTHONPATH:vows/sandbox/:. python vows/sandbox/manage.py syncdb && pyvows --no_color --cover --cover_package=django_pyvows --cover_threshold=100 -r django_pyvows.coverage.xml -x vows/
|
@env PYTHONPATH=sandbox:.:$$PYTHONPATH pyvows -c -l django_pyvows --profile-threshold 95 -r django_pyvows.coverage.xml vows/
|
||||||
|
|
||||||
db:
|
db:
|
||||||
@env PYTHONPATH=$$PYTHONPATH:. python vows/sandbox/manage.py syncdb
|
@env PYTHONPATH=$$PYTHONPATH:. python sandbox/manage.py syncdb --noinput
|
||||||
|
|
|
@ -28,7 +28,7 @@ INSTALLED_APPS = (
|
||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
|
|
||||||
'sandbox.main',
|
'main',
|
||||||
)
|
)
|
||||||
|
|
||||||
MIDDLEWARE_CLASSES = (
|
MIDDLEWARE_CLASSES = (
|
||||||
|
@ -42,7 +42,7 @@ MIDDLEWARE_CLASSES = (
|
||||||
'django.middleware.security.SecurityMiddleware',
|
'django.middleware.security.SecurityMiddleware',
|
||||||
)
|
)
|
||||||
|
|
||||||
ROOT_URLCONF = 'sandbox.sandbox.urls'
|
ROOT_URLCONF = 'sandbox.urls'
|
||||||
|
|
||||||
TEMPLATES = [
|
TEMPLATES = [
|
||||||
{
|
{
|
|
@ -14,7 +14,7 @@ from django_pyvows.context import DjangoContext
|
||||||
|
|
||||||
class ConfiguredVowsContext(DjangoContext):
|
class ConfiguredVowsContext(DjangoContext):
|
||||||
def settings_module(self):
|
def settings_module(self):
|
||||||
return 'sandbox.sandbox.settings'
|
return 'sandbox.settings'
|
||||||
|
|
||||||
def setup(self):
|
def setup(self):
|
||||||
self.TEST_FILE_PATH = abspath(join(dirname(__file__), 'fixtures/the_file.txt'))
|
self.TEST_FILE_PATH = abspath(join(dirname(__file__), 'fixtures/the_file.txt'))
|
||||||
|
|
Reference in a new issue