glfs/general/prog/python-modules/pytest.xml
Pierre Labastie 72c62e4fbc Add figures for python modules
Also fix various problems with already included modules (missing
short descriptions, etc)
2022-11-04 12:24:09 +01:00

169 lines
5.3 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect2 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../../general.ent">
%general-entities;
<!ENTITY pytest-download-http "https://files.pythonhosted.org/packages/source/p/pytest/pytest-&pytest-version;.tar.gz">
<!ENTITY pytest-download-ftp " ">
<!ENTITY pytest-md5sum "c4de3e192e5bb4b39deada36cc2f393a">
<!ENTITY pytest-size "1.2 MB">
<!ENTITY pytest-buildsize "10 MB (add 54 MB for tests)">
<!ENTITY pytest-time "less than 0.1 SBU (1.1 SBU for tests)">
]>
<sect2 id="pytest" xreflabel="pytest-&pytest-version;">
<title>Pytest-&pytest-version;</title>
<indexterm zone="pytest">
<primary sortas="a-pytest">pytest</primary>
</indexterm>
<sect3 role="package">
<title>Introduction to Pytest Module</title>
<para>
The <application>Pytest</application> framework makes it easy to
write small, readable tests, and can scale to support complex
functional testing for applications and libraries.
</para>
&lfs112_checked;
<bridgehead renderas="sect4">Package Information</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>
Download (HTTP): <ulink url="&pytest-download-http;"/>
</para>
</listitem>
<listitem>
<para>
Download (FTP): <ulink url="&pytest-download-ftp;"/>
</para>
</listitem>
<listitem>
<para>
Download MD5 sum: &pytest-md5sum;
</para>
</listitem>
<listitem>
<para>
Download size: &pytest-size;
</para>
</listitem>
<listitem>
<para>
Estimated disk space required: &pytest-buildsize;
</para>
</listitem>
<listitem>
<para>
Estimated build time: &pytest-time;
</para>
</listitem>
</itemizedlist>
<bridgehead renderas="sect4">Pytest Dependencies</bridgehead>
<bridgehead renderas="sect5">Required</bridgehead>
<para role="required">
<xref linkend="attrs"/>,
<xref linkend="iniconfig"/>,
<xref linkend="packaging"/>,
<xref linkend="pluggy"/>,
<xref linkend="py"/>, and
<xref linkend="tomli"/>
</para>
<bridgehead renderas="sect5">Recommended</bridgehead>
<para role="recommended">
<xref linkend="setuptools_scm"/>
</para>
<bridgehead renderas="sect5">Optional (for testing)</bridgehead>
<para role="optional">
<xref linkend="pygments"/>,
<xref linkend="requests"/>,
<ulink url="https://pypi.org/project/argcomplete/">argcomplete</ulink>,
<ulink url="https://pypi.org/project/hypothesis/">hypothesis</ulink>,
<ulink url="https://pypi.org/project/nose/">nose</ulink>, and
<ulink url="https://pypi.org/project/xmlschema/">xmlschema</ulink>
</para>
</sect3>
<sect3 role="installation">
<title>Installation of Pytest</title>
<para> Build the module: </para>
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
<para>
Now, as the <systemitem class="username">root</systemitem> user:
</para>
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user pytest</userinput></screen>
<para>
The installation can be tested with the following commands:
</para>
<screen remap="test"><userinput>python3 -m venv --system-site-packages testenv &amp;&amp;
source testenv/bin/activate &amp;&amp;
pip3 install pytest[testing] &amp;&amp;
python3 /usr/bin/pytest<!-- no && because of a possible error -->
deactivate</userinput></screen>
</sect3>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
href="../../../xincludes/pip3-cmd-explain.xml"/>
<sect3 role="content">
<title>Contents</title>
<segmentedlist>
<segtitle>Installed Programs</segtitle>
<segtitle>Installed Libraries</segtitle>
<segtitle>Installed Directories</segtitle>
<seglistitem>
<seg>
pytest and py.test (different files but with same content)
</seg>
<seg>None</seg>
<seg>
/usr/lib/python&python3-majorver;/site-packages/_pytest,
/usr/lib/python&python3-majorver;/site-packages/pytest, and
/usr/lib/python&python3-majorver;/site-packages/pytest-&pytest-version;.dist-info
</seg>
</seglistitem>
</segmentedlist>
<variablelist>
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
<?dbfo list-presentation="list"?>
<?dbhtml list-presentation="table"?>
<varlistentry id="pytest-prog">
<term><command>pytest</command></term>
<listitem>
<para>
sets up, manages, and/or runs test in python module source
directories
</para>
<indexterm zone="pytest pytest-prog">
<primary sortas="b-pytest-prog">pytest</primary>
</indexterm>
</listitem>
</varlistentry>
</variablelist>
</sect3>
</sect2>