forked from mwouts/jupytext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
26 lines (26 loc) · 1.5 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[build-system]
requires = ["jupyter_packaging~=0.7.9", "jupyterlab>=3.0.0,==3.*", "setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = [
# Uncomment this "error" to turn all unfiltered warnings into errors
# "error",
# use single quote to denote raw strings in toml
# (10 warnings)
'ignore:Passing unrecognized arguments to super\(KernelSpec\).__init__:DeprecationWarning',
# Not seen any more with latest Python + libs
"ignore:Passing a schema to Validator.iter_errors is deprecated and will be removed in a future release:DeprecationWarning",
# in test_utf8_out_331 and two others
# Not seen any more with latest Python + libs
'ignore:Exception ignored in. <function Context.__del__:pytest.PytestUnraisableExceptionWarning',
# In test_markdown_jupytext_nbconvert_is_identity
'ignore:.*contextfilter.* renamed to .*pass_context:DeprecationWarning',
# in test_cli_expect_errors and two others
'ignore:Exception ignored in. <socket.socket:pytest.PytestUnraisableExceptionWarning',
# in test_paired_paths / Python 3.6
'ignore:Exception ignored in. <bound method Context.__del__:pytest.PytestUnraisableExceptionWarning',
# test_config_jupytext_jupyter_fs_meta_manager
'ignore:The alias `_\(\)` will be deprecated. Use `_i18n\(\)` instead.:FutureWarning',
# Conda/Python 3.7/Windows - ImportError while loading conftest
"ignore:the imp module is deprecated in favour of importlib:DeprecationWarning"
]