From a67b51543868d199f8594549ab7812cec6b85d03 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 11 Oct 2019 00:58:14 +0100 Subject: [PATCH] TYPING: lockdown test modules failing mypy --- setup.cfg | 113 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 112 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 43dbac15f5cfe..9c841b76761f5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -130,5 +130,116 @@ skip = pandas/__init__.py,pandas/core/api.py ignore_missing_imports=True no_implicit_optional=True -[mypy-pandas.conftest,pandas.tests.*] +[mypy-pandas.conftest] +ignore_errors=True + +[mypy-pandas.tests.api.test_api] +ignore_errors=True + +[mypy-pandas.tests.arithmetic.test_datetime64] +ignore_errors=True + +[mypy-pandas.tests.arrays.test_array] +ignore_errors=True + +[mypy-pandas.tests.arrays.test_datetimelike] +ignore_errors=True + +[mypy-pandas.tests.arrays.test_period] +ignore_errors=True + +[mypy-pandas.tests.computation.test_eval] +ignore_errors=True + +[mypy-pandas.tests.dtypes.test_common] +ignore_errors=True + +[mypy-pandas.tests.dtypes.test_inference] +ignore_errors=True + +[mypy-pandas.tests.extension.decimal.test_decimal] +ignore_errors=True + +[mypy-pandas.tests.extension.json.array] +ignore_errors=True + +[mypy-pandas.tests.extension.json.test_json] +ignore_errors=True + +[mypy-pandas.tests.extension.test_numpy] +ignore_errors=True + +[mypy-pandas.tests.extension.test_sparse] +ignore_errors=True + +[mypy-pandas.tests.frame.test_constructors] +ignore_errors=True + +[mypy-pandas.tests.frame.test_convert_to] +ignore_errors=True + +[mypy-pandas.tests.indexes.datetimes.test_datetimelike] +ignore_errors=True + +[mypy-pandas.tests.indexes.interval.test_base] +ignore_errors=True + +[mypy-pandas.tests.indexes.interval.test_interval_tree] +ignore_errors=True + +[mypy-pandas.tests.indexes.period.test_period] +ignore_errors=True + +[mypy-pandas.tests.indexes.test_base] +ignore_errors=True + +[mypy-pandas.tests.indexes.test_category] +ignore_errors=True + +[mypy-pandas.tests.indexes.test_numeric] +ignore_errors=True + +[mypy-pandas.tests.indexes.test_range] +ignore_errors=True + +[mypy-pandas.tests.indexes.timedeltas.test_timedelta] +ignore_errors=True + +[mypy-pandas.tests.indexing.test_coercion] +ignore_errors=True + +[mypy-pandas.tests.indexing.test_loc] +ignore_errors=True + +[mypy-pandas.tests.io.json.test_ujson] +ignore_errors=True + +[mypy-pandas.tests.io.parser.conftest] +ignore_errors=True + +[mypy-pandas.tests.io.test_sql] +ignore_errors=True + +[mypy-pandas.tests.plotting.test_backend] +ignore_errors=True + +[mypy-pandas.tests.series.test_constructors] +ignore_errors=True + +[mypy-pandas.tests.series.test_operators] +ignore_errors=True + +[mypy-pandas.tests.test_algos] +ignore_errors=True + +[mypy-pandas.tests.test_base] +ignore_errors=True + +[mypy-pandas.tests.tseries.offsets.test_offsets] +ignore_errors=True + +[mypy-pandas.tests.tseries.offsets.test_offsets_properties] +ignore_errors=True + +[mypy-pandas.tests.tseries.offsets.test_yqm_offsets] ignore_errors=True