From 727b35e42b6b8ae8be2b6bd814c2b797cfe23b2b Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 17 Apr 2014 16:13:00 -0400 Subject: Try explicitly installing the Python dependencies since "setup.py test" does not install them in a way that makes them available later. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 595e37c..62565d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,6 +63,8 @@ script: sudo apt-get -y update sudo apt-get install -y --force-yes libssl-dev/lucid fi + - | + pip install -e . - | coverage run --branch --source=OpenSSL setup.py bdist_wheel test - | -- cgit v1.2.1 From fb5c62d261f3144374b832e45b97d4557cde1f45 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 17 Apr 2014 15:21:48 -0400 Subject: Try reporting the version of OpenSSL that was used at the end of each build. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 62565d1..12d08fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,6 +69,8 @@ script: coverage run --branch --source=OpenSSL setup.py bdist_wheel test - | coverage report -m + - | + python -c "import OpenSSL.SSL; print OpenSSL.SSL.SSLeay_version(OpenSSL.SSL.SSLEAY_VERSION)" after_success: - coveralls -- cgit v1.2.1 From 0d11ed187991ae762b5729562995cd5c50edbc1c Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 17 Apr 2014 16:48:39 -0400 Subject: Change the version reporter to work on Python 3. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 12d08fe..f5db002 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,7 +70,7 @@ script: - | coverage report -m - | - python -c "import OpenSSL.SSL; print OpenSSL.SSL.SSLeay_version(OpenSSL.SSL.SSLEAY_VERSION)" + python -c "import OpenSSL.SSL; print(OpenSSL.SSL.SSLeay_version(OpenSSL.SSL.SSLEAY_VERSION))" after_success: - coveralls -- cgit v1.2.1