Skip to content

Commit f286684

Browse files
committed
Merge branch 'pg-tests-fix' of github.com:asthamohta/python-spanner into pg-tests-fix
2 parents 51396d7 + 08e534d commit f286684

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
INSTANCE_ID = os.environ.get(INSTANCE_ID_ENVVAR, INSTANCE_ID_DEFAULT)
3232

3333
SKIP_BACKUP_TESTS_ENVVAR = "SKIP_BACKUP_TESTS"
34-
SKIP_BACKUP_TESTS = True # os.getenv(SKIP_BACKUP_TESTS_ENVVAR) == True
34+
SKIP_BACKUP_TESTS = os.getenv(SKIP_BACKUP_TESTS_ENVVAR) is not None
3535

3636
INSTANCE_OPERATION_TIMEOUT_IN_SECONDS = int(
3737
os.getenv("SPANNER_INSTANCE_OPERATION_TIMEOUT_IN_SECONDS", 560)

0 commit comments

Comments
 (0)