We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a82cf5 commit 38c961eCopy full SHA for 38c961e
tests/special_tests.sh
@@ -23,10 +23,10 @@ defaults='-m coverage run --source pytorch_lightning --append -m pytest --verbos
23
grep_output=$(grep --recursive --line-number --word-regexp 'tests' --regexp 'special=True' | grep '@RunIf')
24
# file paths
25
files=$(echo "$grep_output" | cut -f1 -d:)
26
-files_arr=($files)
+read -a files_arr <<< $files
27
# line numbers
28
linenos=$(echo "$grep_output" | cut -f2 -d:)
29
-linenos_arr=($linenos)
+read -a linenos_arr <<< $linenos
30
31
# tests to skip - space separated
32
blocklist='test_pytorch_profiler_nested_emit_nvtx'
0 commit comments