File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -271,9 +271,9 @@ def system(session, database_dialect):
271
271
install_systemtest_dependencies (session , "-c" , constraints_path )
272
272
273
273
# If POSTGRESQL tests and Emulator, skip the tests
274
- if ( os .environ .get ("SPANNER_EMULATOR_HOST" )) :
274
+ if os .environ .get ("SPANNER_EMULATOR_HOST" ) and database_dialect == "POSTGRESQL" :
275
275
session .skip ("Postgresql is not supported by Emulator yet." )
276
-
276
+
277
277
# Run py.test against the system tests.
278
278
if system_test_exists :
279
279
session .run (
Original file line number Diff line number Diff line change 31
31
INSTANCE_ID = os .environ .get (INSTANCE_ID_ENVVAR , INSTANCE_ID_DEFAULT )
32
32
33
33
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
35
35
36
36
INSTANCE_OPERATION_TIMEOUT_IN_SECONDS = int (
37
37
os .getenv ("SPANNER_INSTANCE_OPERATION_TIMEOUT_IN_SECONDS" , 560 )
You can’t perform that action at this time.
0 commit comments