-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ Developer Guide | |
:maxdepth: 2 | ||
|
||
project-standards | ||
testing | ||
release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Testing zppy | ||
============ | ||
|
||
Unit tests | ||
---------- | ||
|
||
Run all unit tests by doing the following | ||
|
||
.. code:: | ||
pip install . # Install your changes (`python -m pip install .` also works) | ||
python -m unittest tests/test_*.py # Run all unit tests | ||
Integration tests | ||
----------------- | ||
|
||
Integration tests must be run on an LCRC machine. | ||
|
||
.. code:: | ||
pip install . # Install your changes (`python -m pip install .` also works) | ||
python -m unittest tests/integration/test_*.py # Run all integration tests | ||
Automated tests | ||
--------------- | ||
|
||
We have a :ref:`GitHub Actions <ci-cd>` Continuous Integration / Continuous Delivery (CI/CD) workflow. | ||
|
||
The unit tests are run automatically as part of this. As mentioned earlier, | ||
integration tests must be run on an LCRC machine. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters