Skip to content

Commit d6cc6ad

Browse files
committed
external
1 parent 837ef68 commit d6cc6ad

File tree

4 files changed

+9
-157
lines changed

4 files changed

+9
-157
lines changed

.azure/gpu-tests-fabric.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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"

.azure/gpu-tests-pytorch.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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"

tests/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ You can rely on our CI to make sure all these tests pass.
6464
There 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

tests/run_standalone_tests.sh

Lines changed: 0 additions & 152 deletions
This file was deleted.

0 commit comments

Comments
 (0)