From 54f0fd037f7e799f3db4750070fc3f0e25645e8b Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:20:49 -0400 Subject: coveralls the thing; --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 52f1032..149ffe4 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 -- cgit v1.2.1 From ba67ab23d6baa60fec922cad24883b239fa8d8be Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:22:05 -0400 Subject: advertise how awesome everything is --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 1b2a093..22517a5 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 -- cgit v1.2.1 From 99a694826e2476baa69309ffdc061fd240e10e24 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:43:04 -0400 Subject: 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 149ffe4..aed1c91 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 -- cgit v1.2.1 From d247c8cbe050a3898da6fbc9a93ee5918e9d2cf3 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:44:02 -0400 Subject: 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 aed1c91..bff47ae 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 -- cgit v1.2.1 From 3e99442cfcfbe9fe24b49964c0432f447d8ab222 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 14 Apr 2014 10:47:18 -0400 Subject: 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 bff47ae..cb0eefc 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: -- cgit v1.2.1 From 2bfd11f4903b9cac467f2c7488f8ee236ddc18f5 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 16 Apr 2014 18:31:03 -0400 Subject: Fix the rST markup for coveralls. --- README | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README b/README index 22517a5..de9aa4e 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 -- cgit v1.2.1 From 9f2ec96d2e92e9ea417a7b4bd8385de8bfcd12bc Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 16 Apr 2014 18:32:34 -0400 Subject: 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 cb0eefc..0a8bbab 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 -- cgit v1.2.1 From 8dc60320bfa8d81a5a90f5f4a9957a4e652c6c90 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 16 Apr 2014 18:35:16 -0400 Subject: This is a rST file now. --- README | 12 ------------ README.rst | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 README create mode 100644 README.rst diff --git a/README b/README deleted file mode 100644 index de9aa4e..0000000 --- a/README +++ /dev/null @@ -1,12 +0,0 @@ - -pyOpenSSL - A Python wrapper around the OpenSSL library ------------------------------------------------------------------------------- - -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 diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..de9aa4e --- /dev/null +++ b/README.rst @@ -0,0 +1,12 @@ + +pyOpenSSL - A Python wrapper around the OpenSSL library +------------------------------------------------------------------------------ + +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 -- cgit v1.2.1