FreedomBox/.travis.yml
Bob Girard 41d6cae0a9 Enable integration of Plinth with Travis-CI
- Add files .travis.yml and requirements.txt
- In setup.py, remove 'pygobject' from install_requires
- In setup.py, add 'pyyaml' to install_requires
- Add file plinth/tests/coverage/__init__.py
- Rename file plinth/tests/coverage/test_coverage.py to coverage.py
- In plinth/tests/coverage/coverage.py, rename class TestCoverageCommand
  to CoverageCommand
2015-04-01 16:12:59 -07:00

30 lines
491 B
YAML

# Travis-CI configuration file for Plinth
language: python
python:
- "3.2"
# Debian packages required
addons:
apt_packages:
- python3-gi
virtualenv:
system_site_packages: true
# Command to install dependencies
install: "pip install -r requirements.txt"
# Command to run tests
script: python3 setup.py test
notifications:
email:
on_success: change
on_failure: always
irc:
channels:
- "irc.oftc.net#freedombox"
on_success: always
on_failure: always