mirror of https://github.com/zulip/zulip.git
run-dev: Change provisioning error messages to not reference tests.
Previously, we got the following as a part of the output when running `tools/run-dev.py` without provisioning: It looks like you checked out a branch that has added dependencies beyond what you last provisioned. Your tests are likely to fail until you add dependencies by provisioning. which is a bit confusing.
This commit is contained in:
parent
8876179ef7
commit
52c18e9c9d
|
@ -38,8 +38,8 @@ Do this: `./tools/provision.py`
|
|||
|
||||
NEED_TO_UPGRADE = '''
|
||||
It looks like you checked out a branch that has added
|
||||
dependencies beyond what you last provisioned. Your tests
|
||||
are likely to fail until you add dependencies by provisioning.
|
||||
dependencies beyond what you last provisioned. Your command
|
||||
is likely to fail until you add dependencies by provisioning.
|
||||
|
||||
Do this: `./tools/provision.py`
|
||||
'''
|
||||
|
|
|
@ -60,7 +60,7 @@ parser.add_option('--no-clear-memcached',
|
|||
|
||||
parser.add_option('--force', dest='force',
|
||||
action="store_true",
|
||||
default=False, help='Run tests despite possible problems.')
|
||||
default=False, help='Run command despite possible problems.')
|
||||
|
||||
parser.add_option('--enable-tornado-logging', dest='enable_tornado_logging',
|
||||
action="store_true",
|
||||
|
|
Loading…
Reference in New Issue