@@ -173,6 +173,7 @@ def default(session, tests_path):
173
173
session .run (
174
174
"py.test" ,
175
175
"--quiet" ,
176
+ "-W default::PendingDeprecationWarning" ,
176
177
f"--junitxml={ os .path .split (tests_path )[- 1 ]} _{ session .python } _sponge_log.xml" ,
177
178
"--cov=db_dtypes" ,
178
179
"--cov=tests/unit" ,
@@ -250,6 +251,7 @@ def prerelease(session, tests_path):
250
251
session .run (
251
252
"py.test" ,
252
253
"--quiet" ,
254
+ "-W default::PendingDeprecationWarning" ,
253
255
f"--junitxml={ os .path .split (tests_path )[- 1 ]} _prerelease_{ session .python } _sponge_log.xml" ,
254
256
"--cov=db_dtypes" ,
255
257
"--cov=tests/unit" ,
@@ -345,6 +347,7 @@ def system(session):
345
347
session .run (
346
348
"py.test" ,
347
349
"--quiet" ,
350
+ "-W default::PendingDeprecationWarning" ,
348
351
f"--junitxml=system_{ session .python } _sponge_log.xml" ,
349
352
system_test_path ,
350
353
* session .posargs ,
@@ -353,6 +356,7 @@ def system(session):
353
356
session .run (
354
357
"py.test" ,
355
358
"--quiet" ,
359
+ "-W default::PendingDeprecationWarning" ,
356
360
f"--junitxml=system_{ session .python } _sponge_log.xml" ,
357
361
system_test_folder_path ,
358
362
* session .posargs ,
@@ -529,6 +533,7 @@ def prerelease_deps(session):
529
533
session .run (
530
534
"py.test" ,
531
535
"--verbose" ,
536
+ "-W default::PendingDeprecationWarning" ,
532
537
f"--junitxml=system_{ session .python } _sponge_log.xml" ,
533
538
system_test_path ,
534
539
* session .posargs ,
@@ -537,6 +542,7 @@ def prerelease_deps(session):
537
542
session .run (
538
543
"py.test" ,
539
544
"--verbose" ,
545
+ "-W default::PendingDeprecationWarning" ,
540
546
f"--junitxml=system_{ session .python } _sponge_log.xml" ,
541
547
system_test_folder_path ,
542
548
* session .posargs ,
0 commit comments