ZeroCI is continuous integration dedicated for python projects that generates test summary into xml file and it is integrated with version control systems and Telegram.
(Note: version control systems supported are Github and Gitea)
This section is added to talk more about the ZeroCI life cycle and explain how things work internally.
For installation and running ZeroCI, please check it here
There are 2 main steps to hook the RUT and make it run against ZeroCI (Github will be token as example):
-
Add a file called
zeroCI.yaml
to the home of your repository. -
This file contains the project's jobs (serial jobs with maximum 3 jobs) and every job should contain:
prerequisites
:image_name
: Docker image name needed to be used for running the project on.shell_bin
: shell bin path to be used to run commands on container. (default:/bin/sh
)
install
: list of bash commands required to install the project.script
: list of bash commands needed to run the tests (more details).bin_path
: In case that the installation script or test script will generate a binary and need this binary to be in zeroci dashboard. This field can be in the first job only and if it is found in the second job, it will be ignored. Also the bin generated in first job will be found in the rest jobs in/zeroci/bin
.
(Note: RUT location will be in
/zeroci/code/vcs_repos/<organization's name>/<repository's name>
)
-
Go to ZeroCI configuration.
-
Full name of the repository should be added to repos field.
-
Environment variables can be added on RUT page by clicking on settings (⚙️).
(Note: Only ZeroCI's admins and users can change this environment varibles)
- Go to server ip.
- Once a commit has been pushed, it will be found with a pending status.
- When the test finishes, the status will be updated.
- Press the result ID to view the result details.
- Please browse to ZeroCI dashboard to view repos cards in which each card contains info about current repo, last build status, etc. (Note: The default used branch is
master
)
- Once a commit has been pushed to RUT, if you go to the repository commits, you will find a yellow message indicating that some checks haven't been compeleted yet.
- When the tests run finishes, the status will be updated.
- Please press 'Details' link to view result details.
-
If you want to get a message with the build status on telegram chat, please provide the telegram required info in ZeroCI configuration.
-
Please press the
Result
button for viewing result details andBin
for downloading the binary generated if the location of the bin specified in zeroci.yaml. -
The name beside
fire emoji
🔥 for the one who triggers the build (name will beVCS hook
in case of version control system's hook andZeroCI Scheduler
in case of zeroci schedule the job in its time)
Please go to the result while your test is running or press on view logs button after it finishes.
-
Black formatting result will appear at the beginning.
-
Then you can see the run results related to the tests added under
script
field in ZeroCI.yaml. -
For more details about every test, please press on the test name. (Note: if the test run didn't generate xunit test summary into xml file, the result will appear in log format as running in shell.)
This part is important for getting result in this view
For more details about the plugin Xunit
-
name
: A name for the commands. -
cmd
: The commands for running tests.--with-xunit
: to enable the plugin to generate xunit test summary into xml file.--xunit-file
: specify the output file name, in this case MUST be/test.xml
.
--xunit-testsuite-name
: name of testsuite that will appear in the result.Example
nosetests-3.4 -v testcase.py --with-xunit --xunit-file=/test.xml --xunit-testsuite-name=Simple_nosetest
See full example
For more details about the plugin junitxml
-
name
: A name for the commands. -
cmd
: The commands for running tests.--junitxml
: to enable the plugin and specify the output file name, in this case MUST be/test.xml
.-o junit_suite_name
: name of testsuite that will appear in the result.Example
pytest -v testcase.py --junitxml=/test.xml -o junit_suite_name=Simple_pytest
For more details, please see neph
name
: A name for the job.type
:neph
working_dir
: Absolute path of working directoty.yaml_path
: Absoltue path of yaml file that containing the jobs.
See full example
name
: A name for the commands.cmd
: The commands for running tests.
Only ZeroCI's admins and users can take this actions.
In repository's branch page, tests can be triggered from last commit of this branch by clicking on restart build button.
In result page, tests can be triggered from this commit by clicking on restart build button.
(Note: By clicking the restart build button, the current result will be deleted)
There is an API for adding nightly testsuite, but its page hasn't been added yet.