This file is indexed.

/usr/share/doc/python-pytest-doc/html/contents.html is in python-pytest-doc 2.6.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Full pytest documentation</title>
    
    <link rel="stylesheet" href="_static/flasky.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    './',
        VERSION:     '2.6.2',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="shortcut icon" href="_static/pytest1favi.ico"/>
    <link rel="top" title="None" href="index.html" />
    <link rel="next" title="Getting started basics" href="overview.html" />
   
  
  <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">

  </head>
  <body>
  
  

    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="overview.html" title="Getting started basics"
             accesskey="N">next</a></li>
        <li><a href="#">pytest-2.6.2</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="admonition note">
<p class="first admonition-title">Note</p>
<p><a class="reference external" href="https://ep2014.europython.eu/en/schedule/sessions/92/">improving your automated testing with pytest</a>, July 25th 2014, Berlin, Germany</p>
<p class="last"><a class="reference external" href="http://www.python-academy.com/courses/specialtopics/python_course_testing.html">professional testing with pytest and tox</a>, 24-26th November 2014, Freiburg, Germany</p>
</div>
<div class="section" id="full-pytest-documentation">
<span id="toc"></span><h1>Full pytest documentation<a class="headerlink" href="#full-pytest-documentation" title="Permalink to this headline">ΒΆ</a></h1>
<p><a class="reference external" href="pytest.pdf">Download latest version as PDF</a></p>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="overview.html">Getting started basics</a><ul>
<li class="toctree-l2"><a class="reference internal" href="index.html">pytest: helps you write better programs</a></li>
<li class="toctree-l2"><a class="reference internal" href="getting-started.html">Installation and Getting Started</a></li>
<li class="toctree-l2"><a class="reference internal" href="usage.html">Usage and Invocations</a></li>
<li class="toctree-l2"><a class="reference internal" href="goodpractises.html">Good Integration Practises</a></li>
<li class="toctree-l2"><a class="reference internal" href="projects.html">Project examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html">Some Issues and Questions</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="apiref.html">pytest reference documentation</a><ul>
<li class="toctree-l2"><a class="reference internal" href="builtin.html">Pytest API and builtin fixtures</a></li>
<li class="toctree-l2"><a class="reference internal" href="customize.html">Basic test configuration</a></li>
<li class="toctree-l2"><a class="reference internal" href="assert.html">The writing and reporting of assertions in tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="fixture.html">pytest fixtures: explicit, modular, scalable</a></li>
<li class="toctree-l2"><a class="reference internal" href="yieldfixture.html">Fixture functions using &#8220;yield&#8221; / context manager integration</a></li>
<li class="toctree-l2"><a class="reference internal" href="parametrize.html">Parametrizing fixtures and test functions</a></li>
<li class="toctree-l2"><a class="reference internal" href="xunit_setup.html">classic xunit-style setup</a></li>
<li class="toctree-l2"><a class="reference internal" href="capture.html">Capturing of the stdout/stderr output</a></li>
<li class="toctree-l2"><a class="reference internal" href="monkeypatch.html">Monkeypatching/mocking modules and environments</a></li>
<li class="toctree-l2"><a class="reference internal" href="xdist.html">xdist: pytest distributed testing plugin</a></li>
<li class="toctree-l2"><a class="reference internal" href="tmpdir.html">Temporary directories and files</a></li>
<li class="toctree-l2"><a class="reference internal" href="mark.html">Marking test functions with attributes</a></li>
<li class="toctree-l2"><a class="reference internal" href="skipping.html">Skip and xfail: dealing with tests that can not succeed</a></li>
<li class="toctree-l2"><a class="reference internal" href="recwarn.html">Asserting deprecation and other warnings</a></li>
<li class="toctree-l2"><a class="reference internal" href="unittest.html">Support for unittest.TestCase / Integration of fixtures</a></li>
<li class="toctree-l2"><a class="reference internal" href="nose.html">Running tests written for nose</a></li>
<li class="toctree-l2"><a class="reference internal" href="doctest.html">Doctest integration for modules and test files</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="plugins.html">Working with plugins and conftest files</a><ul>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#conftest-py-local-per-directory-plugins">conftest.py: local per-directory plugins</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#installing-external-plugins-searching">Installing External Plugins / Searching</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#writing-a-plugin-by-looking-at-examples">Writing a plugin by looking at examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#making-your-plugin-installable-by-others">Making your plugin installable by others</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#plugin-discovery-order-at-tool-startup">Plugin discovery order at tool startup</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#requiring-loading-plugins-in-a-test-module-or-conftest-file">Requiring/Loading plugins in a test module or conftest file</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#accessing-another-plugin-by-name">Accessing another plugin by name</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#finding-out-which-plugins-are-active">Finding out which plugins are active</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#deactivating-unregistering-a-plugin-by-name">Deactivating / unregistering a plugin by name</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="plugins.html#pytest-default-plugin-reference">pytest default plugin reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="plugins.html#pytest-hook-reference">pytest hook reference</a><ul>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#hook-specification-and-validation">Hook specification and validation</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#initialization-command-line-and-configuration-hooks">Initialization, command line and configuration hooks</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#generic-runtest-hooks">Generic &#8220;runtest&#8221; hooks</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#collection-hooks">Collection hooks</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#reporting-hooks">Reporting hooks</a></li>
<li class="toctree-l2"><a class="reference internal" href="plugins.html#debugging-interaction-hooks">Debugging/Interaction hooks</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="plugins.html#reference-of-objects-involved-in-hooks">Reference of objects involved in hooks</a></li>
<li class="toctree-l1"><a class="reference internal" href="plugins_index/index.html">List of Third-Party Plugins</a></li>
<li class="toctree-l1"><a class="reference internal" href="example/index.html">Usages and Examples</a><ul>
<li class="toctree-l2"><a class="reference internal" href="example/reportingdemo.html">Demo of Python failure reports with pytest</a></li>
<li class="toctree-l2"><a class="reference internal" href="example/simple.html">Basic patterns and examples</a></li>
<li class="toctree-l2"><a class="reference internal" href="example/parametrize.html">Parametrizing tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="example/markers.html">Working with custom markers</a></li>
<li class="toctree-l2"><a class="reference internal" href="example/special.html">A session-fixture which can look at all collected tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="example/pythoncollection.html">Changing standard (Python) test discovery</a></li>
<li class="toctree-l2"><a class="reference internal" href="example/nonpython.html">Working with non-python tests</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="talks.html">Talks and Tutorials</a><ul>
<li class="toctree-l2"><a class="reference internal" href="talks.html#talks-and-blog-postings">Talks and blog postings</a></li>
<li class="toctree-l2"><a class="reference internal" href="talks.html#older-conference-talks-and-tutorials">Older conference talks and tutorials</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="funcarg_compare.html">pytest-2.3: reasoning for fixture/funcarg evolution</a><ul>
<li class="toctree-l2"><a class="reference internal" href="funcarg_compare.html#shortcomings-of-the-previous-pytest-funcarg-mechanism">Shortcomings of the previous <tt class="docutils literal"><span class="pre">pytest_funcarg__</span></tt> mechanism</a></li>
<li class="toctree-l2"><a class="reference internal" href="funcarg_compare.html#direct-scoping-of-fixture-funcarg-factories">Direct scoping of fixture/funcarg factories</a></li>
<li class="toctree-l2"><a class="reference internal" href="funcarg_compare.html#direct-parametrization-of-funcarg-resource-factories">Direct parametrization of funcarg resource factories</a></li>
<li class="toctree-l2"><a class="reference internal" href="funcarg_compare.html#no-pytest-funcarg-prefix-when-using-fixture-decorator">No <tt class="docutils literal"><span class="pre">pytest_funcarg__</span></tt> prefix when using &#64;fixture decorator</a></li>
<li class="toctree-l2"><a class="reference internal" href="funcarg_compare.html#solving-per-session-setup-autouse-fixtures">solving per-session setup / autouse fixtures</a></li>
<li class="toctree-l2"><a class="reference internal" href="funcarg_compare.html#funcargs-fixture-discovery-now-happens-at-collection-time">funcargs/fixture discovery now happens at collection time</a></li>
<li class="toctree-l2"><a class="reference internal" href="funcarg_compare.html#conclusion-and-compatibility-notes">Conclusion and compatibility notes</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="announce/index.html">Release announcements</a><ul>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.6.2.html">pytest-2.6.2: few fixes and cx_freeze support</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.6.1.html">pytest-2.6.1: fixes and new xfail feature</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.6.1.html#changes-2-6-1">Changes 2.6.1</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.6.0.html">pytest-2.6.0: shorter tracebacks, new warning system, test runner compat</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.5.2.html">pytest-2.5.2: fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.5.1.html">pytest-2.5.1: fixes and new home page styling</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.5.0.html">pytest-2.5.0: now down to ZERO reported bugs!</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.4.2.html">pytest-2.4.2: colorama on windows, plugin/tmpdir fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.4.1.html">pytest-2.4.1: fixing three regressions compared to 2.3.5</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.4.0.html">pytest-2.4.0: new fixture features/hooks and bug fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.3.5.html">pytest-2.3.5: bug fixes and little improvements</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.3.4.html">pytest-2.3.4: stabilization, more flexible selection via &#8220;-k expr&#8221;</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.3.3.html">pytest-2.3.3: integration fixes, py24 suport, <tt class="docutils literal"><span class="pre">*/**</span></tt> shown in traceback</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.3.2.html">pytest-2.3.2: some fixes and more traceback-printing speed</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.3.1.html">pytest-2.3.1: fix regression with factory functions</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.3.0.html">pytest-2.3: improved fixtures / better unittest integration</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.2.4.html">pytest-2.2.4: bug fixes, better junitxml/unittest/python3 compat</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.2.2.html">pytest-2.2.2: bug fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.2.1.html">pytest-2.2.1: bug fixes, perfect teardowns</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.2.0.html">py.test 2.2.0: test marking++, parametrization++ and duration profiling</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.1.3.html">py.test 2.1.3: just some more fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.1.2.html">py.test 2.1.2: bug fixes and fixes for jython</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.1.1.html">py.test 2.1.1: assertion fixes and improved junitxml output</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.1.0.html">py.test 2.1.0: perfected assertions and bug fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.0.3.html">py.test 2.0.3: bug fixes and speed ups</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.0.2.html">py.test 2.0.2: bug fixes, improved xfail/skip expressions, speed ups</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.0.1.html">py.test 2.0.1: bug fixes</a></li>
<li class="toctree-l2"><a class="reference internal" href="announce/release-2.0.0.html">py.test 2.0.0: asserts++, unittest++, reporting++, config++, docs++</a></li>
</ul>
</li>
</ul>
</div>
<div class="toctree-wrapper compound">
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
            <p class="logo"><a href="#">
              <img class="logo" src="_static/pytest1.png" alt="Logo"/>
            </a></p><h3><a href="#">Table Of Contents</a></h3>

<ul>
  <li><a href="index.html">Home</a></li>
  <li><a href="#">Contents</a></li>
  <li><a href="getting-started.html">Install</a></li>
  <li><a href="example/index.html">Examples</a></li>
  <li><a href="customize.html">Customize</a></li>
  <li><a href="contact.html">Contact</a></li>
  <li><a href="talks.html">Talks/Posts</a></li>
  <li><a href="changelog.html">Changelog</a></li>
</ul><h3>Related Topics</h3>
<ul>
  <li><a href="#">Documentation overview</a><ul>
      <li>Next: <a href="overview.html" title="next chapter">Getting started basics</a></li>
  </ul></li>
</ul><h3>Useful Links</h3>
<ul>
  <li><a href="index.html">The pytest Website</a></li>
  <li><a href="contributing.html">Contribution Guide</a></li>
  <li><a href="https://pypi.python.org/pypi/pytest">pytest @ PyPI</a></li>
  <li><a href="https://bitbucket.org/hpk42/pytest/">pytest @ Bitbucket</a></li>
  <li><a href="http://pytest.org/latest/plugins_index/index.html">3rd party plugins</a></li>
  <li><a href="https://bitbucket.org/hpk42/pytest/issues?status=new&status=open">Issue Tracker</a></li>
  <li><a href="http://pytest.org/latest/pytest.pdf">PDF Documentation</a>
</ul>

<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>

  <div class="footer">
    &copy; Copyright 2014, holger krekel.
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
  </div>
  

  </body>
</html>