diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-01-29 02:31:30 -0800 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-01-29 02:31:30 -0800 |
| commit | f341ddd5be92a7539ea84cf2ee956e41ff7a2b78 (patch) | |
| tree | c549f59af9fb977c7518196e8d5be395819fe53b /.travis.yml | |
| parent | db825d42267ff8ca64c9dfe4978325b3d9fc7d1b (diff) | |
| parent | 6624dd51f5cd789c69e380c39815da956ea8df58 (diff) | |
Merge pull request #32 from matejc/robottests
add robot tests
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..fd697b4e6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python +python: + - "2.7" +before_install: + - "export DISPLAY=:99.0" + - "sh -e /etc/init.d/xvfb start" +install: + - "make" +script: + - "make tests" + - "make robot" +notifications: + irc: + channels: + - "irc.freenode.org#searx" + template: + - "%{repository}/#%{build_number}/%{branch} (%{author}): %{message} %{build_url}" |