From 54f0fd037f7e799f3db4750070fc3f0e25645e8b Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:20:49 -0400 Subject: [PATCH 1/8] coveralls the thing; --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 52f103272..149ffe45b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,6 +29,9 @@ matrix: before_install: - if [ -n "$CRYPTOGRAPHY_GIT_MASTER" ]; then pip install git+https://github.com/pyca/cryptography.git;fi +after_success: + - coveralls + install: # Install the wheel library explicitly here. It is not really a setup # dependency. It is not an install dependency. It is only a dependency for From ba67ab23d6baa60fec922cad24883b239fa8d8be Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:22:05 -0400 Subject: [PATCH 2/8] advertise how awesome everything is --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 1b2a09396..22517a593 100644 --- a/README +++ b/README @@ -7,3 +7,5 @@ See the file INSTALL for installation instructions. See http://github.com/pyca/pyopenssl for development. See https://mail.python.org/mailman/listinfo/pyopenssl-users for the discussion mailing list. + +.. image:: https://coveralls.io/repos/pyca/pyopenssl/badge.png :target: https://coveralls.io/r/pyca/pyopenssl From 99a694826e2476baa69309ffdc061fd240e10e24 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:43:04 -0400 Subject: [PATCH 3/8] Maybe some more travis intergraterations for stuff --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 149ffe45b..aed1c91a0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,5 +39,9 @@ install: # travis. - pip install wheel + # Also install some tools for measuring code coverage and sending the results + to coveralls. + - pip install coveralls coverage + script: - - python setup.py bdist_wheel test + - coverage run --branch --source=OpenSSL setup.py bdist_wheel test From d247c8cbe050a3898da6fbc9a93ee5918e9d2cf3 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:44:02 -0400 Subject: [PATCH 4/8] Also stick a quick summary at the end of every build --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index aed1c91a0..bff47ae97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,3 +45,4 @@ install: script: - coverage run --branch --source=OpenSSL setup.py bdist_wheel test + - coverage report -m From 3e99442cfcfbe9fe24b49964c0432f447d8ab222 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:47:18 -0400 Subject: [PATCH 5/8] where is my emacs yaml mode --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bff47ae97..cb0eefc73 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ install: - pip install wheel # Also install some tools for measuring code coverage and sending the results - to coveralls. + # to coveralls. - pip install coveralls coverage script: From 2bfd11f4903b9cac467f2c7488f8ee236ddc18f5 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 16 Apr 2014 18:31:03 -0400 Subject: [PATCH 6/8] Fix the rST markup for coveralls. --- README | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README b/README index 22517a593..de9aa4e16 100644 --- a/README +++ b/README @@ -8,4 +8,5 @@ See http://github.com/pyca/pyopenssl for development. See https://mail.python.org/mailman/listinfo/pyopenssl-users for the discussion mailing list. -.. image:: https://coveralls.io/repos/pyca/pyopenssl/badge.png :target: https://coveralls.io/r/pyca/pyopenssl +.. image:: https://coveralls.io/repos/pyca/pyopenssl/badge.png + :target: https://coveralls.io/r/pyca/pyopenssl From 9f2ec96d2e92e9ea417a7b4bd8385de8bfcd12bc Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 16 Apr 2014 18:32:34 -0400 Subject: [PATCH 7/8] Make the travis configuration read linearly. --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index cb0eefc73..0a8bbabf2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,9 +29,6 @@ matrix: before_install: - if [ -n "$CRYPTOGRAPHY_GIT_MASTER" ]; then pip install git+https://github.com/pyca/cryptography.git;fi -after_success: - - coveralls - install: # Install the wheel library explicitly here. It is not really a setup # dependency. It is not an install dependency. It is only a dependency for @@ -46,3 +43,9 @@ install: script: - coverage run --branch --source=OpenSSL setup.py bdist_wheel test - coverage report -m + +after_success: + - coveralls + +notifications: + email: false From 8dc60320bfa8d81a5a90f5f4a9957a4e652c6c90 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 16 Apr 2014 18:35:16 -0400 Subject: [PATCH 8/8] This is a rST file now. --- README => README.rst | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.rst (100%) diff --git a/README b/README.rst similarity index 100% rename from README rename to README.rst