Mercurial > code > home > repos > rdfdb
comparison pyproject.toml @ 84:36f4318442f2
clean up Literal monkeypatch that makes formatting better
author | drewp@bigasterisk.com |
---|---|
date | Mon, 04 Apr 2022 22:00:45 -0700 |
parents | 8d3c3e7cfb54 |
children | f9282b33b8d0 |
comparison
equal
deleted
inserted
replaced
83:bbf4595b34ae | 84:36f4318442f2 |
---|---|
31 ] | 31 ] |
32 | 32 |
33 [build-system] | 33 [build-system] |
34 requires = ["pdm-pep517>=0.12.0"] | 34 requires = ["pdm-pep517>=0.12.0"] |
35 build-backend = "pdm.pep517.api" | 35 build-backend = "pdm.pep517.api" |
36 | |
37 [tool.pytest.ini_options] | |
38 filterwarnings = [ | |
39 # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed. | |
40 'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning', | |
41 # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed. | |
42 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning', | |
43 ] |