From ef194d1b82ae2e0cc6124ece88d41d9660e61b11 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Mon, 21 Oct 2019 22:56:02 +0200 Subject: [PATCH] Fix mypy missing from dev install script (#28060) * Fix mypy missing * Update bootstrap * Update script/bootstrap Co-Authored-By: cgtobi --- script/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index ed6cd55be36..ba594cbb341 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -7,4 +7,4 @@ set -e cd "$(dirname "$0")/.." echo "Installing test dependencies..." -python3 -m pip install tox colorlog pre-commit +python3 -m pip install tox colorlog pre-commit $(grep mypy requirements_test.txt)