Skip to content

Commit

Permalink
Add '.travis.yml'
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslo committed Aug 17, 2016
1 parent 91dadf4 commit 1764050
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
language:
- python

python:
- "2.7"

# Container-based infrastructure (Linux)
# * https://docs.travis-ci.com/user/migrating-from-legacy/#How-can-I-use-container-based-infrastructure%3F
sudo:
- false

# Install packages differs for container-based infrastructure
# * https://docs.travis-ci.com/user/migrating-from-legacy/#How-do-I-install-APT-sources-and-packages%3F
# * http://stackoverflow.com/a/30925448/2288008
addons:
apt:
packages:
- python-enchant

install:
# Info about OS
- uname -a

# Info about Python tools
- which python
- python --version

- which virtualenv
- virtualenv --version

script:
- cd docs
- ./jenkins.sh

0 comments on commit 1764050

Please sign in to comment.