Continuous integration server for Github and MediaWiki.
Project description
Generic continuous integration server for interfacing with github and publishing results to a Media Wiki. The basic idea is that continuous integration just requires three things:
A repo to monitor for changes.
Unit tests to run.
A place to publish the results of the tests.
Py-CI interfaces with github using the pygithub API wrapper for interfacing with github’s API. It monitors the pull requests for a set of repos. When a new or untested pull request is found:
Create a local copy of the repo; merge the proposed changes from the pull request into a working branch.
Run all the unit tests specified in the repo.xml configuration file.
Post the results of running the unit tets to a media wiki.
Quickstart
If you already have a virtualenv installed as well as virtualenvwrapper, skip this next code block. However, be sure to add the VENV variable to the global configuration file.
pip install virtualenv pip install virtualenvwrapper mkvirtualenv ci
Next, copy the `global.xml <https://github.com/rosenbrockc/ci/wiki>`__ file and put it somewhere on you local disk (say ~/.ci.global.xml). Be sure to edit the values. Then:
export PYCI_XML="~/.ci.global.xml" workon ci pip install py-ci sudo ci.py -setup
If you don’t see any errors, your server is ready to have repositories installed. This configures the server cron to run every minute. Use -cronfreq [int minutes] to change that frequency (see cron settings for details). You don’t need to use sudo for anything except setting the server up initially (or uninstalling it later with the -rollback switch). Next, create a `repo.xml <https://github.com/rosenbrockc/ci/wiki/Repository-Level-Settings>`__ file for repository you want to monitor. Suppose it exists at ~/repos/myrepo/ci.xml, then:
ci.py -install ~/repos/myrepo/ci.xml
Your repository will now be monitored for new pull requests forever untill you either -uninstall the repo.xml file or you -disable the CI server to temporarily suspend all requests. To understand the behavior of the CI server, read through the repository level settings page.
IMPORTANT: if your unit tests require environment variables to be set, they need to be added to a file called ~/.cron_profile that will be loaded by the CI server whenever the cron is run. See cron environment variables for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyci-0.0.4.tar.gz
.
File metadata
- Download URL: pyci-0.0.4.tar.gz
- Upload date:
- Size: 29.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f3b67d01e47ac834081b1e32c0515a622a3248b6cfad5e583ea552ee1f7bb6a |
|
MD5 | 04a71d09913c24b52e5a30adc18063a1 |
|
BLAKE2b-256 | 679dcc5beff1500c241a0b7ac8d4a634d57302991a6bfb2441b2eaba5ccc4e49 |
File details
Details for the file pyci-0.0.4-py2.py3-none-any.whl
.
File metadata
- Download URL: pyci-0.0.4-py2.py3-none-any.whl
- Upload date:
- Size: 41.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8fb744f5d3de419dc5d930c4773e8d55a9244218b4142550370c74f500af185 |
|
MD5 | b03d914b1b6b0a3e71ddac1ecfd13143 |
|
BLAKE2b-256 | fa6a323eb4817b0655811b54b89003a8d93cc30860f4e03f93b3cde3e48db773 |