Skip to content

Commit 2ded7ca

Browse files
committed
Turn on keep going
1 parent 4e84817 commit 2ded7ca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -ex
44

55
# See Note [Keep Going]
6-
CONTINUE_ON_ERROR=false
6+
CONTINUE_ON_ERROR=True
77
if [[ "$CONTINUE_ON_ERROR" == "1" ]]; then
88
set +e
99
fi

test/cpp/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LOGFILE=/tmp/pytorch_cpp_test.log
1111
XLA_EXPERIMENTAL="nonzero:masked_select"
1212

1313
# See Note [Keep Going]
14-
CONTINUE_ON_ERROR=false
14+
CONTINUE_ON_ERROR=True
1515
if [[ "$CONTINUE_ON_ERROR" == "1" ]]; then
1616
set +e
1717
fi

test/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ VERBOSITY=2
1414
#
1515
# This flag should be set to `false`` by default. After testing your changes, make sure
1616
# to set this flag back to `false`` before you merge your PR.
17-
CONTINUE_ON_ERROR=false
17+
CONTINUE_ON_ERROR=True
1818
if [[ "$CONTINUE_ON_ERROR" == "1" ]]; then
1919
set +e
2020
fi

0 commit comments

Comments
 (0)