Skip to content

Commit a4bbc65

Browse files
committed
dir
1 parent b1d88b1 commit a4bbc65

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.azure/gpu-tests-fabric.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ jobs:
134134
condition: and(succeeded(), eq(variables['PACKAGE_NAME'], 'fabric'))
135135
displayName: "Adjust tests & examples"
136136
137-
- bash: python -m coverage run --source ${COVERAGE_SOURCE} -m pytest . -v --durations=50
138-
workingDirectory: tests/tests_fabric/
137+
- bash: python -m coverage run --source ${COVERAGE_SOURCE} -m pytest tests_fabric/ -v --durations=50
138+
workingDirectory: tests/
139139
displayName: "Testing: fabric standard"
140140
timeoutInMinutes: "10"
141141

@@ -157,7 +157,7 @@ jobs:
157157
./codecov --token=$(CODECOV_TOKEN) --commit=$(Build.SourceVersion) \
158158
--flags=gpu,pytest,${COVERAGE_SOURCE} --name="GPU-coverage" --env=linux,azure
159159
ls -l
160-
workingDirectory: tests/tests_fabric/
160+
workingDirectory: tests/
161161
displayName: "Statistics"
162162
163163
- script: |

.azure/gpu-tests-pytorch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ jobs:
155155
ls -l checkpoints/
156156
displayName: "Get legacy checkpoints"
157157
158-
- bash: python -m coverage run --source ${COVERAGE_SOURCE} -m pytest -v --durations=50
159-
workingDirectory: tests/tests_pytorch
158+
- bash: python -m coverage run --source ${COVERAGE_SOURCE} -m pytest tests_pytorch/ -v --durations=50
159+
workingDirectory: tests/
160160
displayName: "Testing: PyTorch standard"
161161
timeoutInMinutes: "35"
162162

tests/run_standalone_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ source="${PL_STANDALONE_TESTS_SOURCE:-"lightning"}"
2323
test_dir=$1 # parse the first argument
2424
COLLECTED_TESTS_FILE="collected_tests.txt"
2525

26-
cd ${test_dir}
26+
#cd ${test_dir}
2727
ls -lh . # show the contents of the directory
2828

2929
# this environment variable allows special tests to run

0 commit comments

Comments
 (0)