File tree 2 files changed +0
-13
lines changed
2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -476,20 +476,10 @@ filterwarnings = [
476
476
" ignore::ResourceWarning:asyncio" ,
477
477
# From plotting doctests
478
478
" ignore:More than 20 figures have been opened:RuntimeWarning" ,
479
- # Will be fixed in numba 0.56: https://github.com/numba/numba/issues/7758
480
- " ignore:`np.MachAr` is deprecated:DeprecationWarning:numba" ,
481
479
" ignore:.*urllib3:DeprecationWarning:botocore" ,
482
480
" ignore:Setuptools is replacing distutils.:UserWarning:_distutils_hack" ,
483
481
# https://github.com/PyTables/PyTables/issues/822
484
482
" ignore:a closed node found in the registry:UserWarning:tables" ,
485
- " ignore:`np.object` is a deprecated:DeprecationWarning:tables" ,
486
- " ignore:tostring:DeprecationWarning:tables" ,
487
- " ignore:distutils Version classes are deprecated:DeprecationWarning:pandas_datareader" ,
488
- " ignore:distutils Version classes are deprecated:DeprecationWarning:numexpr" ,
489
- " ignore:distutils Version classes are deprecated:DeprecationWarning:fastparquet" ,
490
- " ignore:distutils Version classes are deprecated:DeprecationWarning:fsspec" ,
491
- # Can be removed once https://github.com/numpy/numpy/pull/24794 is merged
492
- " ignore:.*In the future `np.long` will be defined as.*:FutureWarning" ,
493
483
]
494
484
junit_family = " xunit2"
495
485
markers = [
Original file line number Diff line number Diff line change @@ -494,14 +494,11 @@ exclude_lines = [
494
494
" pragma: no cover" ,
495
495
# Don't complain about missing debug-only code:s
496
496
" def __repr__" ,
497
- " if self.debug" ,
498
497
# Don't complain if tests don't hit defensive assertion code:
499
498
" raise AssertionError" ,
500
499
" raise NotImplementedError" ,
501
500
" AbstractMethodError" ,
502
501
# Don't complain if non-runnable code isn't run:
503
- " if 0:" ,
504
- " if __name__ == .__main__.:" ,
505
502
" if TYPE_CHECKING:" ,
506
503
]
507
504
You can’t perform that action at this time.
0 commit comments