-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
100 lines (94 loc) · 2.55 KB
/
Copy pathmkdocs.yml
File metadata and controls
100 lines (94 loc) · 2.55 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
site_name: pyssertive
site_description: >-
Fluent, chainable assertions for everything you test in Python. One vocabulary —
from a single value to HTTP responses, JSON, HTML, MCP, and architecture.
site_url: https://othercodes.github.io/pyssertive/
site_author: Unay Santisteban
repo_url: https://github.com/othercodes/pyssertive
repo_name: othercodes/pyssertive
edit_uri: edit/master/docs/
copyright: Copyright © Unay Santisteban — MIT License
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.sections
- navigation.top
- navigation.tabs
- navigation.tracking
- navigation.indexes
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- content.tabs.link
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_root_heading: true
show_source: true
members_order: source
# Render method signatures even when a docstring is not (yet) present —
# the type-annotated signature is useful on its own and docstrings are
# being filled in incrementally.
show_if_no_docstring: true
docstring_style: google
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
merge_init_into_class: true
markdown_extensions:
- admonition
- attr_list
- md_in_html
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
nav:
- Home: index.md
- Getting Started:
- getting-started/installation.md
- getting-started/quickstart.md
- Guides:
- guides/expectations.md
- guides/http.md
- guides/json.md
- guides/html.md
- guides/database.md
- guides/architecture.md
- guides/mcp.md
- API Reference:
- api/index.md
- api/assertions.md
- api/formats.md
- api/http.md
- api/arch.md
- api/mcp.md