File tree Expand file tree Collapse file tree 10 files changed +78
-9
lines changed Expand file tree Collapse file tree 10 files changed +78
-9
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,20 @@ <h3><a href="{{ pathto(master_doc) }}">{{ _('Table Of Contents') }}</a></h3>
2
2
3
3
< ul >
4
4
< li > < a href ="{{ pathto('index') }} "> Home</ a > </ li >
5
+
5
6
< li > < a href ="{{ pathto('getting-started') }} "> Get started</ a > </ li >
7
+ < li > < a href ="{{ pathto('how-to/index') }} "> How-to guides</ a > </ li >
8
+ < li > < a href ="{{ pathto('reference/index') }} "> Reference guides</ a > </ li >
9
+ < li > < a href ="{{ pathto('explanation/index') }} "> Explanation</ a > </ li >
10
+
6
11
< li > < a href ="{{ pathto('example/index') }} "> Examples</ a > </ li >
7
- < li > < a href ="{{ pathto('customize') }} "> Customize</ a > </ li >
8
- < li > < a href ="{{ pathto('reference') }} "> API Reference</ a > </ li >
9
- < li > < a href ="{{ pathto('plugin_list') }} "> 3rd party plugins</ a > </ li >
12
+
13
+ < li > < a href ="{{ pathto('reference/customize') }} "> Customize</ a > </ li >
14
+ < li > < a href ="{{ pathto('reference/reference') }} "> API Reference</ a > </ li >
15
+ < li > < a href ="{{ pathto('reference/plugin_list') }} "> 3rd party plugins</ a > </ li >
16
+
10
17
< li > < a href ="{{ pathto('contents') }} "> Complete table of contents</ a > </ li >
18
+
11
19
< li > < a href ="{{ pathto('changelog') }} "> Changelog</ a > </ li >
12
20
< li > < a href ="{{ pathto('contributing') }} "> Contributing</ a > </ li >
13
21
< li > < a href ="{{ pathto('backwards-compatibility') }} "> Backwards Compatibility</ a > </ li >
Original file line number Diff line number Diff line change @@ -57,17 +57,25 @@ Reference guides
57
57
reference/reference
58
58
59
59
60
+ Explanation
61
+ -----------------
62
+
63
+ .. toctree ::
64
+ :maxdepth: 2
65
+
66
+ explanation/anatomy
67
+ explanation/fixtures
68
+ explanation/goodpractices
69
+ explanation/flaky
70
+ explanation/pythonpath
71
+
72
+
60
73
Further topics
61
74
-----------------
62
75
63
76
.. toctree ::
64
77
:maxdepth: 2
65
78
66
- anatomy
67
- fixtures
68
- goodpractices
69
- flaky
70
- pythonpath
71
79
example/index
72
80
73
81
backwards-compatibility
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Conventions for Python test discovery
48
48
* ``test `` prefixed test functions or methods outside of class
49
49
* ``test `` prefixed test functions or methods inside ``Test `` prefixed test classes (without an ``__init__ `` method)
50
50
51
- For examples of how to customize your test discovery :doc: `example/pythoncollection `.
51
+ For examples of how to customize your test discovery :doc: `/ example/pythoncollection `.
52
52
53
53
Within Python modules, ``pytest `` also discovers tests using the standard
54
54
:ref: `unittest.TestCase <unittest.TestCase >` subclassing technique.
Original file line number Diff line number Diff line change
1
+ :orphan:
2
+
3
+ Explanation
4
+ ================
5
+
6
+ .. toctree ::
7
+ :maxdepth: 1
8
+
9
+ anatomy
10
+ fixtures
11
+ goodpractices
12
+ flaky
13
+ pythonpath
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ :orphan:
2
+
3
+ How-to guides
4
+ ================
5
+
6
+ .. toctree ::
7
+ :maxdepth: 1
8
+
9
+ usage
10
+ existingtestsuite
11
+ assert
12
+ mark
13
+ monkeypatch
14
+ tmpdir
15
+ capture
16
+ skipping
17
+ parametrize
18
+ plugins
19
+ nose
20
+ bash-completion
21
+ fixtures
Original file line number Diff line number Diff line change
1
+ :orphan:
2
+
3
+ Reference guides
4
+ ================
5
+
6
+ .. toctree ::
7
+ :maxdepth: 1
8
+
9
+ fixtures
10
+ warnings
11
+ doctest
12
+ cache
13
+ unittest
14
+ xunit_setup
15
+ plugin_list
16
+ writing_plugins
17
+ logging
18
+ customize
19
+ reference
You can’t perform that action at this time.
0 commit comments