forked from ckan/ckan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.21 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.towncrier]
directory = "changes"
package = "ckan"
filename = "CHANGELOG.rst"
title_format = "v.{version} {project_date}"
issue_format = "`#{issue} <https://github.com/ckan/ckan/pull/{issue}>`_"
wrap = true
[[tool.towncrier.type]]
directory = 'migration'
name = 'Migration notes'
showcontent = true
[[tool.towncrier.type]]
directory = 'feature'
name = 'Major features'
showcontent = true
[[tool.towncrier.type]]
directory = 'misc'
name = 'Minor changes'
showcontent = true
[[tool.towncrier.type]]
directory = 'bugfix'
name = 'Bugfixes'
showcontent = true
[[tool.towncrier.type]]
directory = 'removal'
name = 'Removals and deprecations'
showcontent = true
[tool.black]
line-length = 79
[tool.pytest.ini_options]
filterwarnings = [
"ignore::sqlalchemy.exc.SADeprecationWarning",
"ignore::sqlalchemy.exc.SAWarning",
"ignore::DeprecationWarning",
"ignore::bs4.GuessedAtParserWarning" # using lxml as default parser
]
markers = [
"ckan_config: patch configuration used by other fixtures via (key, value) pair.",
"ckan_pytest: test case that is explicitely was rewriten from `nose` style"
]
testpaths = ["ckan", "ckanext"]
addopts = "--strict-markers --pdbcls=IPython.terminal.debugger:TerminalPdb -p no:ckan"