8000 Fix distributed test paths when running periodic multigpu job · pytorch/pytorch@50abece · GitHub
[go: up one dir, main page]

Skip to content

Commit 50abece

Browse files
committed
Fix distributed test paths when running periodic multigpu job
Some distributed tests are moved to a new location after #88698
1 parent 8e4c982 commit 50abece

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.jenkins/pytorch/multigpu-test.sh

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88
source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
99

1010
echo "Testing pytorch"
11-
if [ -n "${CI}" ]; then
12-
# TODO move this to docker
13-
# Pin unittest-xml-reporting to freeze printing test summary logic, related: https://github.com/pytorch/pytorch/issues/69014
14-
pip_install "unittest-xml-reporting<=3.2.0,>=2.0.0"
15-
fi
1611

1712
# Disabling tests to see if they solve timeout issues; see https://github.com/pytorch/pytorch/issues/70015
1813
# python tools/download_mnist.py --quiet -d test/cpp/api/mnist
@@ -28,8 +23,8 @@ time python test/run_test.py --verbose -i distributed/rpc/cuda/test_tensorpipe_a
2823
# FSDP tests
2924
for f in test/distributed/fsdp/*.py ; do time python test/run_test.py --verbose -i "${f#*/}" ; done
3025
# ShardedTensor tests
31-
time python test/run_test.py --verbose -i distributed/_shard/checkpoint/test_checkpoint
32-
time python test/run_test.py --verbose -i distributed/_shard/checkpoint/test_file_system_checkpoint
26+
time python test/run_test.py --verbose -i distributed/checkpoint/test_checkpoint
27+
time python test/run_test.py --verbose -i distributed/checkpoint/test_file_system_checkpoint
3328
time python test/run_test.py --verbose -i distributed/_shard/sharding_spec/test_sharding_spec
3429
time python test/run_test.py --verbose -i distributed/_shard/sharding_plan/test_sharding_plan
3530
time python test/run_test.py --verbose -i distributed/_shard/sharded_tensor/test_megatron_prototype

0 commit comments

Comments
 (0)
0