We're no longer using the review script.

(imported from commit 9840ebdfdacee6e3cb32934b81502c70c133e2b0)
This commit is contained in:
Tim Abbott 2015-09-20 00:10:54 -07:00
parent 94d7ed006f
commit 602077f75b
2 changed files with 4 additions and 4 deletions

View File

@ -2,6 +2,7 @@
# encoding: utf-8
#
# Copyright (C) 2010 Ksplice, Inc.
# Copyright (C) 2012-2015 Zulip, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -20,10 +21,10 @@
from __future__ import unicode_literals
## CC_EMAIL: All review requests will be CC'd here.
CC_EMAIL = 'team-zulip@dropbox.com'
CC_EMAIL = 'listname@example.com'
## DOMAIN: Reviewers without an '@' will be assumed to be localparts here.
DOMAIN = 'dropbox.com'
DOMAIN = 'example.com'
## TEST_SCRIPT: Test file to run; path relative to root of the working tree, or absolute.
TEST_SCRIPT = "tools/test-all"

View File

@ -11,6 +11,5 @@ esac
cd "$(dirname "$0")"/..
./tools/generate-fixtures
# "-u" uses unbuffered IO, which is important when wrapping it in
# something like subprocess (as tools/review does)
# "-u" uses unbuffered IO, which is important when wrapping it in subprocess
/usr/bin/env python -u ./manage.py test "$target" --settings=zproject.test_settings "$@"