tests: remove debugging statement

This commit is contained in:
Frédéric Péters 2017-08-16 14:51:14 +02:00
parent fb79e150a2
commit f5db13e7ec
1 changed files with 0 additions and 1 deletions

View File

@ -185,7 +185,6 @@ ALLOWED_HOSTS = ['127.0.0.1', '127.0.0.2']
WCS_PID = os.fork()
if not WCS_PID:
os.chdir(os.path.dirname(WCS_MANAGE))
print 'running child'
os.environ['DJANGO_SETTINGS_MODULE'] = 'wcs.settings'
os.environ['WCS_SETTINGS_FILE'] = os.path.join(WCS_DIR, 'local_settings.py')
os.execvp('python', ['python', WCS_MANAGE, 'runserver', '--noreload', '0.0.0.0:8999'])