forked from filipsnastins/tomodachi-testcontainers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
119 lines (114 loc) · 3.66 KB
/
mkdocs.yml
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
site_name: Tomodachi Testcontainers
site_description: Collection of Testcontainers, pytest fixtures and test clients for end-to-end/integration testing for Python Tomodachi framework. A great starting point to learn more about Testcontainers and necessity of integration testing.
site_url: https://github.com/filipsnastins/tomodachi-testcontainers
repo_name: filipsnastins/tomodachi-testcontainers
repo_url: https://github.com/filipsnastins/tomodachi-testcontainers
docs_dir: docs
theme:
name: material
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: teal
accent: amber
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: teal
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- content.tooltips
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.top
- search.highlight
- search.suggest
- toc.follow
icon:
repo: fontawesome/brands/github-alt
plugins:
- glightbox: null
- search: null
- mkdocstrings:
handlers:
python:
options:
extensions:
- griffe_typingdoc
show_root_heading: true
show_if_no_docstring: true
inherited_members: false
members_order: source
separate_signature: true
unwrap_annotated: true
filters: ['!^_']
merge_init_into_class: true
docstring_section_style: spacy
signature_crossrefs: true
markdown_extensions:
- admonition
- attr_list
- def_list
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Tomodachi Testcontainers:
- index.md
- quickstart.md
- installation.md
- features.md
- configuration-options.md
- included-testcontainers.md
- troubleshooting.md
- development.md
- resources-and-acknowledgements.md
- Getting Started:
- getting-started/testing-simple-app.md
- getting-started/testing-app-with-backing-services.md
- getting-started/testing-app-with-collaborator-services.md
- getting-started/testing-asynchronous-systems.md
# - getting-started/testing-cronjobs-and-scripts.md # TODO
- getting-started/applying-e2e-tests-with-testcontainers.md
- Guides:
- guides/index.md
- guides/creating-new-testcontainers.md
- guides/testing-apps-built-with-other-frameworks.md
- guides/testing-databases.md
- guides/testing-repositories.md
# - guides/ports-and-adapters.md # TODO
# - guides/creating-app-facade.md # TODO
# - guides/improving-test-performance.md # TODO
# - guides/managing-test-isolation.md # TODO
# - guides/running-testcontainer-tests-in-ci-cd.md # TODO
- guides/debugging-testcontainers.md
- guides/forward-container-logs-to-pytest.md
- guides/exporting-test-coverage.md
- guides/parallelizing-tests.md
- Reference - Code API:
- reference/index.md
- Containers: reference/containers.md
- Clients: reference/clients.md
- Fixtures: reference/fixtures.md
- Assertions: reference/assertions.md
- Async Probes: reference/async-probes.md
- Utils: reference/utils.md