-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
141 lines (135 loc) · 4.25 KB
/
Copy pathmkdocs.yml
File metadata and controls
141 lines (135 loc) · 4.25 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
site_name: assertpy2
site_description: Fluent assertion library for Python with composable matchers, structural matching, and full type safety
site_url: https://solganis.github.io/assertpy2/
repo_url: https://github.com/Solganis/assertpy2
repo_name: Solganis/assertpy2
edit_uri: edit/main/docs/
copyright: Copyright © 2026 Solganis and assertpy2 contributors
theme:
name: material
logo: logo-dark.svg
favicon: logo.svg
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tracking
- navigation.sections
- navigation.top
- navigation.footer
- content.code.copy
- content.code.annotate
- search.suggest
- search.highlight
- toc.follow
markdown_extensions:
- admonition
- attr_list
- md_in_html
- tables
- toc:
permalink: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
docstring_section_style: table
filters: ["!^_"]
heading_level: 2
members_order: source
merge_init_into_class: true
overloads_only: true
separate_signature: true
show_bases: false
show_root_heading: false
show_root_full_path: false
show_root_toc_entry: false
show_signature_annotations: true
show_source: true
show_symbol_type_heading: false
show_symbol_type_toc: false
signature_crossrefs: false
extra_css:
- stylesheets/extra.css
# Rebuild the live `mkdocs serve` site when docstrings in the package change,
# not just when files under docs/ change.
watch:
- assertpy2
nav:
- Introduction: index.md
- Getting started:
- Quickstart: getting-started.md
- Migrating from assertpy: migration.md
- Comparison: comparison.md
- Guides:
- Type assertions: assertions.md
- Fluent API: fluent.md
- Matchers: matchers.md
- Data navigation: data.md
- Testing: testing.md
- Errors & reporting: errors.md
- Concepts:
- Type safety: type-safety.md
- Extending:
- Custom assertions: extending.md
- Integrations: integrations.md
- API Reference:
- Overview: reference/overview.md
- Entry points: reference/entry-points.md
- Core & objects: reference/core.md
- Matchers: reference/matchers.md
- String assertions: reference/strings.md
- Numeric assertions: reference/numbers.md
- Collection assertions: reference/collections.md
- Containment assertions: reference/containment.md
- Dict assertions: reference/dicts.md
- Date & time assertions: reference/dates.md
- File & path assertions: reference/files.md
- Bytes assertions: reference/bytes.md
- Dynamic assertions: reference/dynamic.md
- Exception & callable assertions: reference/exceptions.md
- Warning assertions: reference/warnings.md
- Async & eventual assertions: reference/async.md
- Extracting: reference/extracting.md
- JSON assertions: reference/json.md
- Data frame & array assertions: reference/dataframes.md
- Snapshot assertions: reference/snapshots.md
- Structured failures: reference/errors.md