Skip to content

Commit 0676893

Browse files
committed
asdf
1 parent b0f103a commit 0676893

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/standalone_tests.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,21 @@ echo $files
3333
if [[ "$OSTYPE" == "darwin"* ]]; then
3434
parametrizations=$(pytest $files --collect-only --quiet "$@" | tail -r | sed -e '1,3d' | tail -r)
3535
else
36+
echo "asdfasdfasdf"
3637
parametrizations=$(pytest $files --collect-only --quiet "$@" | head -n -2)
3738
fi
3839
parametrizations_arr=($parametrizations)
3940

41+
echo "assdafsdaf"
42+
4043
# tests to skip - space separated
4144
blocklist='tests/profiler/test_profiler.py::test_pytorch_profiler_nested_emit_nvtx'
4245
report=''
4346

4447
for i in "${!parametrizations_arr[@]}"; do
4548
parametrization=${parametrizations_arr[$i]}
49+
echo "assdafsdaf" $i $parametrization
50+
4651

4752
# check blocklist
4853
if echo $blocklist | grep -F "${parametrization}"; then

0 commit comments

Comments
 (0)