42 lines
1.0 KiB
INI
42 lines
1.0 KiB
INI
[aliases]
|
|
test = pytest
|
|
|
|
[tool:pytest]
|
|
# disable-pytest-warnings should be removed once we rewrite tests
|
|
# using yield with parametrize
|
|
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
|
|
addopts =
|
|
--ignore build_tools
|
|
--ignore benchmarks
|
|
--ignore doc
|
|
--ignore examples
|
|
--ignore maint_tools
|
|
--ignore asv_benchmarks
|
|
--doctest-modules
|
|
--disable-pytest-warnings
|
|
-rxXs
|
|
|
|
filterwarnings =
|
|
ignore:the matrix subclass:PendingDeprecationWarning
|
|
|
|
[wheelhouse_uploader]
|
|
artifact_indexes=
|
|
# Wheels built by Azure Pipelines (only for specific tags):
|
|
# https://github.com/MacPython/scikit-learn-wheels
|
|
https://pypi.anaconda.org/scikit-learn-wheels-staging/simple/scikit-learn/
|
|
|
|
[flake8]
|
|
# Default flake8 3.5 ignored flags
|
|
ignore=E121,E123,E126,E226,E24,E704,W503,W504
|
|
|
|
[mypy]
|
|
ignore_missing_imports = True
|
|
allow_redefinition = True
|
|
|
|
[check-manifest]
|
|
# ignore files missing in VCS
|
|
ignore =
|
|
sklearn/linear_model/_sag_fast.pyx
|
|
sklearn/utils/_seq_dataset.pxd
|
|
sklearn/utils/_seq_dataset.pyx
|