Beispiel #1
0
# django-start is supposed to do, so whenever you change django-start
# you can run ./test.py and see if no errors are raised.
#
# TODO: Still needs a series of 'assert' to check that, apart from errors
# django-start does what it is supposed to do
#
from django_start import management
from shutil import rmtree
from os import chdir, system
from sys import exit as sys_exit

PROJECT_FOLDER = 'test-project'
APP_FOLDER = 'test-app'

rmtree(PROJECT_FOLDER, ignore_errors=True)
management.execute_from_command_line(
    ['django-start.py', 'project', '--no-prompt', PROJECT_FOLDER])
system('virtualenv env')
system('source env/bin/activate')
chdir('project')
system('python manage.py require')
system('python manage.py sync')
system('python manage.py test ff0000')
management.execute_from_command_line(
    ['django-start.py', 'app', '--no-prompt', APP_FOLDER])

with open('urls.py', 'a') as f:
    f.write("\nurlpatterns.insert(0, url(r'^%s/', include('%s.urls')))\n" %
        (APP_FOLDER, APP_FOLDER))

with open('settings/__init__.py', 'a') as f:
    f.write("\nINSTALLED_APPS += ('%s',)\n" % APP_FOLDER)
Beispiel #2
0
#!/usr/bin/env python
from django_start import management

if __name__ == "__main__":
    management.execute_from_command_line()