File tree Expand file tree Collapse file tree 4 files changed +9
-157
lines changed
Expand file tree Collapse file tree 4 files changed +9
-157
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,9 @@ jobs:
148148 displayName : " Testing: fabric standard"
149149 timeoutInMinutes : " 10"
150150
151- - bash : bash ./run_standalone_tests.sh "tests_fabric"
151+ - bash : |
152+ wget https://raw.githubusercontent.com/Lightning-AI/utilities/main/scripts/run_standalone_tests.sh
153+ bash ./run_standalone_tests.sh "tests_fabric"
152154 workingDirectory: tests/
153155 env:
154156 PL_RUN_STANDALONE_TESTS: "1"
Original file line number Diff line number Diff line change @@ -168,7 +168,9 @@ jobs:
168168 displayName : " Testing: PyTorch standard"
169169 timeoutInMinutes : " 35"
170170
171- - bash : bash ./run_standalone_tests.sh "tests_pytorch"
171+ - bash : |
172+ wget https://raw.githubusercontent.com/Lightning-AI/utilities/main/scripts/run_standalone_tests.sh
173+ bash ./run_standalone_tests.sh "tests_pytorch"
172174 workingDirectory: tests/
173175 env:
174176 PL_USE_MOCKED_MNIST: "1"
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ You can rely on our CI to make sure all these tests pass.
6464There are certain standalone tests, which you can run using:
6565
6666``` bash
67- ./tests/run_standalone_tests.sh tests/tests_pytorch/trainer /
68- # or run a specific test
69- ./tests/run_standalone_tests.sh -k test_multi_gpu_model_ddp
67+ cd tests/
68+ wget https://raw.githubusercontent.com/Lightning-AI/utilities/main/scripts/run_standalone_tests.sh
69+ ./tests/run_standalone_tests.sh tests_pytorch/
7070```
7171
7272## Running Coverage
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments