Skip to content

Commit b606784

Browse files
1 parent 0225c1e commit b606784

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

‎noxfile.py

+1-13
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,7 @@ def install_systemtest_dependencies(session, *constraints):
238238

239239

240240
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
241-
@nox.parametrize("database_dialect", ["GOOGLE_STANDARD_SQL", "POSTGRESQL"])
242-
def system(session, database_dialect):
241+
def system(session):
243242
"""Run the system test suite."""
244243
constraints_path = str(
245244
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
@@ -257,9 +256,6 @@ def system(session, database_dialect):
257256
session.skip(
258257
"Credentials or emulator host must be set via environment variable"
259258
)
260-
# If POSTGRESQL tests and Emulator, skip the tests
261-
if os.environ.get("SPANNER_EMULATOR_HOST") and database_dialect == "POSTGRESQL":
262-
session.skip("Postgresql is not supported by Emulator yet.")
263259

264260
# Install pyopenssl for mTLS testing.
265261
if os.environ.get("GOOGLE_API_USE_CLIENT_CERTIFICATE", "false") == "true":
@@ -281,10 +277,6 @@ def system(session, database_dialect):
281277
f"--junitxml=system_{session.python}_sponge_log.xml",
282278
system_test_path,
283279
*session.posargs,
284-
env={
285-
"SPANNER_DATABASE_DIALECT": database_dialect,
286-
"SKIP_BACKUP_TESTS": "true",
287-
},
288280
)
289281
if system_test_folder_exists:
290282
session.run(
@@ -293,10 +285,6 @@ def system(session, database_dialect):
293285
f"--junitxml=system_{session.python}_sponge_log.xml",
294286
system_test_folder_path,
295287
*session.posargs,
296-
env={
297-
"SPANNER_DATABASE_DIALECT": database_dialect,
298-
"SKIP_BACKUP_TESTS": "true",
299-
},
300288
)
301289

302290

0 commit comments

Comments
 (0)