Files
zulip/tools/travis/setup-static-analysis
Tim Abbott 8dff14430e tools: Remove old python 3 compatibility checker.
Now that we've migrated over to Python 3, this tool is no longer required.

Fixes #6217.
2017-08-22 14:58:59 -07:00

12 lines
383 B
Bash
Executable File

#!/bin/bash
set -e
set -x
# We only need the mypy checker in this build, so we just install that
# directly, skipping provision.
if ! pip install --no-deps -r requirements/mypy.txt; then
echo "\`pip install --no-deps -r requirements/mypy.txt\`: Failure occured while trying to perform dependancy installation, Retrying..."
pip install --no-deps -r requirements/mypy.txt
fi