Skip to content

Commit 2d6111d

Browse files
author
cclib
committed
See cclib/cclib@1c7aa93 from refs/heads/master
1 parent 8105e01 commit 2d6111d

5 files changed

+30
-18
lines changed

_sources/development.rst.txt

+7-2
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,13 @@ Adding a new program version
197197
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
198198

199199
There are a few conventions when adding a new supported program version to the unit tests:
200+
200201
* Two different recent versions are typically used in the unit tests. If there already are two, move the older version(s) the regression suite (see below).
201-
* When adding files for the new version, first copy the corresponding files for the last version already in cclib. Afterwards, check in files from the new program version as changes to the copied files. This procedure makes it easy to look at the differences introduced with the new version in git clients.
202+
* When adding files for the new version:
203+
204+
#. Make a commit that copies the corresponding files from the last version already in cclib to the new directory.
205+
#. Make a commit that replaces these files with those for the actual new version. This procedure makes it easy to look at the differences introduced with the new version in git clients.
206+
#. See https://github.com/cclib/cclib/pull/575/commits for an example.
202207

203208
.. index::
204209
single: testing; regressions
@@ -221,7 +226,7 @@ Using both the unit and regression tests, the line-by-line `test coverage`_ show
221226
Adding a new regression test
222227
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
223228

224-
A regression test consists of one or more output files and optionally a test function or class.
229+
A regression test consists of one or more output files and optionally a test function and/or multiple test classes.
225230

226231
New regression tests are added by creating entries in `regressionfiles.yaml`_. There are three kinds of tests:
227232

_sources/how_to_install.rst.txt

+7-6
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,18 @@ There are in fact multiple packages, `python3-cclib`_ containing the Python modu
8080
.. _`Debian GNU/Linux`: https://www.debian.org
8181
.. _`Ubuntu`: https://ubuntu.com/
8282
.. _`cclib packages`: https://packages.debian.org/search?searchon=sourcenames&keywords=cclib
83-
.. _`python3-cclib`: https://packages.debian.org/bullseye/python3-cclib
84-
.. _`cclib`: https://packages.debian.org/bullseye/cclib
85-
.. _`cclib-data`: https://packages.debian.org/bullseye/cclib-data
83+
.. _`python3-cclib`: https://packages.debian.org/bookworm/python3-cclib
84+
.. _`cclib`: https://packages.debian.org/bookworm/cclib
85+
.. _`cclib-data`: https://packages.debian.org/bookworm/cclib-data
8686

8787
Manual download and install
8888
---------------------------
8989

9090
The source code of the newest release of cclib (version |release|) is distributed as:
91-
* A .zip file: https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.zip
92-
* A .tar.gz file: https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.tar.gz
93-
* Windows binary installers (see the `newest release page`_)
91+
92+
* A .zip file: https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.zip
93+
* A .tar.gz file: https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.tar.gz
94+
* Windows binary installers (see the `newest release page`_)
9495

9596
On Windows, if you choose to download the .exe files instead, you can install simply by double-clicking on the file. To uninstall, use the "Add and Remove Programs" menu in the Control Panel.
9697

development.html

+12-4
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,17 @@ <h4>Adding a new unit test<a class="headerlink" href="#adding-a-new-unit-test" t
239239
</section>
240240
<section id="adding-a-new-program-version">
241241
<h4>Adding a new program version<a class="headerlink" href="#adding-a-new-program-version" title="Link to this heading"></a></h4>
242-
<p>There are a few conventions when adding a new supported program version to the unit tests:
243-
* Two different recent versions are typically used in the unit tests. If there already are two, move the older version(s) the regression suite (see below).
244-
* When adding files for the new version, first copy the corresponding files for the last version already in cclib. Afterwards, check in files from the new program version as changes to the copied files. This procedure makes it easy to look at the differences introduced with the new version in git clients.</p>
242+
<p>There are a few conventions when adding a new supported program version to the unit tests:</p>
243+
<ul class="simple">
244+
<li><p>Two different recent versions are typically used in the unit tests. If there already are two, move the older version(s) the regression suite (see below).</p></li>
245+
<li><p>When adding files for the new version:</p>
246+
<ol class="arabic simple">
247+
<li><p>Make a commit that copies the corresponding files from the last version already in cclib to the new directory.</p></li>
248+
<li><p>Make a commit that replaces these files with those for the actual new version. This procedure makes it easy to look at the differences introduced with the new version in git clients.</p></li>
249+
<li><p>See <a class="reference external" href="https://github.com/cclib/cclib/pull/575/commits">https://github.com/cclib/cclib/pull/575/commits</a> for an example.</p></li>
250+
</ol>
251+
</li>
252+
</ul>
245253
</section>
246254
</section>
247255
<section id="regression-tests">
@@ -251,7 +259,7 @@ <h4>Adding a new program version<a class="headerlink" href="#adding-a-new-progra
251259
<p>Using both the unit and regression tests, the line-by-line <a class="reference external" href="coverage/index.html">test coverage</a> shows which parts of cclib are touched by at least one test. When adding new features and tests, the GitHub Actions <a class="reference external" href="https://github.com/cclib/cclib/blob/master/.github/scripts/run_pytest.bash">testing script</a> can be run locally to generate the HTML coverage pages and ensure that the tests exercise the feature code.</p>
252260
<section id="adding-a-new-regression-test">
253261
<h4>Adding a new regression test<a class="headerlink" href="#adding-a-new-regression-test" title="Link to this heading"></a></h4>
254-
<p>A regression test consists of one or more output files and optionally a test function or class.</p>
262+
<p>A regression test consists of one or more output files and optionally a test function and/or multiple test classes.</p>
255263
<p>New regression tests are added by creating entries in <a class="reference external" href="https://github.com/cclib/cclib-data/blob/master/regressionfiles.yaml">regressionfiles.yaml</a>. There are three kinds of tests:</p>
256264
<ul class="simple">
257265
<li><p>A regression may be parsed, but specific attributes on the regression are not checked: no test function or class is added.</p></li>

how_to_install.html

+3-5
Original file line numberDiff line numberDiff line change
@@ -150,18 +150,16 @@ <h2>Installing using a system package manager<a class="headerlink" href="#instal
150150
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>apt<span class="w"> </span>install<span class="w"> </span>cclib
151151
</pre></div>
152152
</div>
153-
<p>There are in fact multiple packages, <a class="reference external" href="https://packages.debian.org/bullseye/python3-cclib">python3-cclib</a> containing the Python module, and <a class="reference external" href="https://packages.debian.org/bullseye/cclib">cclib</a> which installs the user scripts and depends on the Python module. If you also need to also install the unittests and logfiles we distribute, you will need to install the <a class="reference external" href="https://packages.debian.org/bullseye/cclib-data">cclib-data</a> package from the non-free repositories (due to license issues). Because of distribution release cycles, package manager versions of cclib may be out of date compared to the PyPI version.</p>
153+
<p>There are in fact multiple packages, <a class="reference external" href="https://packages.debian.org/bookworm/python3-cclib">python3-cclib</a> containing the Python module, and <a class="reference external" href="https://packages.debian.org/bookworm/cclib">cclib</a> which installs the user scripts and depends on the Python module. If you also need to also install the unittests and logfiles we distribute, you will need to install the <a class="reference external" href="https://packages.debian.org/bookworm/cclib-data">cclib-data</a> package from the non-free repositories (due to license issues). Because of distribution release cycles, package manager versions of cclib may be out of date compared to the PyPI version.</p>
154154
</section>
155155
<section id="manual-download-and-install">
156156
<h2>Manual download and install<a class="headerlink" href="#manual-download-and-install" title="Link to this heading"></a></h2>
157-
<dl class="simple">
158-
<dt>The source code of the newest release of cclib (version 1.8.1) is distributed as:</dt><dd><ul class="simple">
157+
<p>The source code of the newest release of cclib (version 1.8.1) is distributed as:</p>
158+
<ul class="simple">
159159
<li><p>A .zip file: <a class="reference external" href="https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.zip">https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.zip</a></p></li>
160160
<li><p>A .tar.gz file: <a class="reference external" href="https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.tar.gz">https://github.com/cclib/cclib/releases/download/v1.8.1/cclib-1.8.1.tar.gz</a></p></li>
161161
<li><p>Windows binary installers (see the <a class="reference external" href="https://github.com/cclib/cclib/releases/tag/v1.8.1">newest release page</a>)</p></li>
162162
</ul>
163-
</dd>
164-
</dl>
165163
<p>On Windows, if you choose to download the .exe files instead, you can install simply by double-clicking on the file. To uninstall, use the “Add and Remove Programs” menu in the Control Panel.</p>
166164
<p>None of these files include the tests and logfiles used for testing. In order to download all tests, we also provide source archives on the <a class="reference external" href="https://github.com/cclib/cclib/releases/tag/v1.8.1">newest release page</a>.</p>
167165
<p>If you are using the .zip or .tar.gz files, extract the contents of the file at an appropriate location, which we will call INSTALLDIR. Open a command prompt and change directory to INSTALLDIR. Next, run the following commands to install cclib:</p>

searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)