File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838extensions = [
3939 "sphinx.ext.autodoc" ,
4040 "sphinx.ext.intersphinx" ,
41+ "sphinx.ext.autosectionlabel" ,
4142]
4243
4344intersphinx_mapping = {
Original file line number Diff line number Diff line change @@ -605,3 +605,10 @@ besides the main one.
605605 This will start and stop the server for each tests, which causes about 0.5
606606seconds waiting when the server is stopped. It won't override the ``httpserver ``
607607fixture so you can keep the original single-threaded behavior.
608+
609+ .. warning ::
610+ Handler threads which are still running when the test is finished, will be
611+ left behind and won't be join()ed between the tests. If you want to ensure
612+ that all threads are properly cleaned up and you want to wait for them,
613+ consider using the second option (:ref: `Creating a different httpserver fixture `)
614+ described above.
You can’t perform that action at this time.
0 commit comments