mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Add MonkeyType dependency for testing on Linux (#55305)
Summary: Install Monkey Type as part of our testing on Linux Pull Request resolved: https://github.com/pytorch/pytorch/pull/55305 Reviewed By: ailzhang Differential Revision: D27592679 Pulled By: nikithamalgifb fbshipit-source-id: c92b786e45fc16288d658228a5f96aca53a3da6b
This commit is contained in:
parent
158cdece65
commit
8243ba7205
2 changed files with 6 additions and 0 deletions
|
|
@ -66,6 +66,11 @@ function get_bazel() {
|
|||
chmod +x tools/bazel
|
||||
}
|
||||
|
||||
function install_monkeytype {
|
||||
# Install MonkeyType
|
||||
pip_install MonkeyType
|
||||
}
|
||||
|
||||
TORCHVISION_COMMIT=8a2dc6f22ac4389ccba8859aa1e1cb14f1ee53db
|
||||
|
||||
function install_torchvision() {
|
||||
|
|
|
|||
|
|
@ -437,6 +437,7 @@ elif [[ "${BUILD_ENVIRONMENT}" == *-bazel-* ]]; then
|
|||
test_bazel
|
||||
else
|
||||
install_torchvision
|
||||
install_monkeytype
|
||||
test_python
|
||||
test_aten
|
||||
test_vec256
|
||||
|
|
|
|||
Loading…
Reference in a new issue