@@ -173,6 +173,7 @@ def default(session, tests_path):
173173 session .run (
174174 "py.test" ,
175175 "--quiet" ,
176+ "-W default::PendingDeprecationWarning" ,
176177 f"--junitxml={ os .path .split (tests_path )[- 1 ]} _{ session .python } _sponge_log.xml" ,
177178 "--cov=db_dtypes" ,
178179 "--cov=tests/unit" ,
@@ -250,6 +251,7 @@ def prerelease(session, tests_path):
250251 session .run (
251252 "py.test" ,
252253 "--quiet" ,
254+ "-W default::PendingDeprecationWarning" ,
253255 f"--junitxml={ os .path .split (tests_path )[- 1 ]} _prerelease_{ session .python } _sponge_log.xml" ,
254256 "--cov=db_dtypes" ,
255257 "--cov=tests/unit" ,
@@ -345,6 +347,7 @@ def system(session):
345347 session .run (
346348 "py.test" ,
347349 "--quiet" ,
350+ "-W default::PendingDeprecationWarning" ,
348351 f"--junitxml=system_{ session .python } _sponge_log.xml" ,
349352 system_test_path ,
350353 * session .posargs ,
@@ -353,6 +356,7 @@ def system(session):
353356 session .run (
354357 "py.test" ,
355358 "--quiet" ,
359+ "-W default::PendingDeprecationWarning" ,
356360 f"--junitxml=system_{ session .python } _sponge_log.xml" ,
357361 system_test_folder_path ,
358362 * session .posargs ,
@@ -529,6 +533,7 @@ def prerelease_deps(session):
529533 session .run (
530534 "py.test" ,
531535 "--verbose" ,
536+ "-W default::PendingDeprecationWarning" ,
532537 f"--junitxml=system_{ session .python } _sponge_log.xml" ,
533538 system_test_path ,
534539 * session .posargs ,
@@ -537,6 +542,7 @@ def prerelease_deps(session):
537542 session .run (
538543 "py.test" ,
539544 "--verbose" ,
545+ "-W default::PendingDeprecationWarning" ,
540546 f"--junitxml=system_{ session .python } _sponge_log.xml" ,
541547 system_test_folder_path ,
542548 * session .posargs ,
0 commit comments