Mention build name in docs.

Mention in docs that tools/run-mypy and tools/check-py3k are run
in the 'static-analysis' build.
This commit is contained in:
Eklavya Sharma
2016-07-12 06:50:19 +05:30
committed by Tim Abbott
parent 08a4555e0f
commit 51239f225b
2 changed files with 4 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ You can learn more about it at:
* [Using mypy with Python 2 code](http://mypy.readthedocs.io/en/latest/python2.html)
The mypy type checker is run automatically as part of Zulip's Travis
CI testing process.
CI testing process in the 'static-analysis' build.
## Zulip goals

View File

@@ -336,8 +336,9 @@ compatibility as we continue to develop new features in zulip, we have a
special tool, tools/check-py3, which checks all code for Python 3
syntactic compatibility by running a subset of the automated migration
tools and checking if they trigger any changes. tools/check-py3 is run
automatically in Zulip's Travis CI tests to avoid any regressions, but
is not included in test-all since it is quite slow.
automatically in Zulip's Travis CI tests (in the 'static-analysis'
build) to avoid any regressions, but is not included in test-all since
it is quite slow.
To run tooks/check-py3, you need to install the modernize and future
python packages (which are included in requirements/py3k.txt, which