commit 1dcdce1cce0550a011e5f61f38d36c71361dd991 Author: anadahz anadahz@users.noreply.github.com Date: Wed Oct 26 13:49:59 2016 +0000
Explicitly test all Twisted versions, add pip list, format template (#637)
* Explicitly test all Twisted versions, add pip list, format template
Successfully debugging an ooniprobe build/run implies that we know the specific package and version dependency of a build. * Add missing Twisted versions from travis environment * Add the output of pip list to the travis build log * Minor fixes to irc template format
* Fix YAML syntax: add missing dash (-) --- .travis.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml index 1adfd29..899d925 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,15 @@ env: - TWISTED=Twisted==15.3.0 - TWISTED=Twisted==15.4.0 - TWISTED=Twisted==15.5.0 + - TWISTED=Twisted==16.0.0 + - TWISTED=Twisted==16.1.0 + - TWISTED=Twisted==16.1.1 + - TWISTED=Twisted==16.2.0 + - TWISTED=Twisted==16.3.0 + - TWISTED=Twisted==16.3.1 + - TWISTED=Twisted==16.3.2 + - TWISTED=Twisted==16.4.0 + - TWISTED=Twisted==16.4.1 - TWISTED=Twisted before_install: - sudo apt-get update @@ -30,6 +39,7 @@ install: # command to run tests, e.g. python setup.py test script: - sudo $(which coverage) run $(which trial) ooni + - pip list after_success: - coveralls notifications: @@ -40,5 +50,5 @@ notifications: on_failure: change skip_join: true template: - - "%{repository} (%{commit}) : %{message} Diff:%{compare_url}, - Build %{build_url}" + - "%{repository} (%{commit}): %{message} Diff: %{compare_url}" + - "Build: %{build_url}"