lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 1.11-33-gd9b4818

[Date Prev][Date Next] [Thread Prev][Thread Next]

python-stdnum branch master updated. 1.11-33-gd9b4818



This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-stdnum".

The branch, master has been updated
       via  d9b481854ad88eb7a91bdabd24ae3070f5ea45d0 (commit)
       via  d5bf6e569961411b3f0412e6200bbf5dd9f2bd23 (commit)
      from  2f38aaffb0577c945945c8a4b01aa9edc7240e9f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://arthurdejong.org/git/python-stdnum/commit/?id=d9b481854ad88eb7a91bdabd24ae3070f5ea45d0

commit d9b481854ad88eb7a91bdabd24ae3070f5ea45d0
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Fri Aug 2 23:56:23 2019 +0200

    Show missing lines in coverage report

diff --git a/setup.cfg b/setup.cfg
index fdbe65b..010134a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -21,6 +21,10 @@ cover-html=true
 cover-html-dir=coverage
 cover-min-percentage=100
 
+[coverage:report]
+fail_under=100
+show_missing=true
+
 [build_sphinx]
 all_files  = 1
 

https://arthurdejong.org/git/python-stdnum/commit/?id=d5bf6e569961411b3f0412e6200bbf5dd9f2bd23

commit d5bf6e569961411b3f0412e6200bbf5dd9f2bd23
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Fri Aug 2 23:07:44 2019 +0200

    Fix Travis build to use trusty for some Python versions
    
    Python 2.6 is not available xenial which is the default now. The
    coverage also does not seem to work for pypy3.

diff --git a/.travis.yml b/.travis.yml
index 3a48bda..a288c84 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,20 +2,20 @@ language: python
 cache: pip
 sudo: false
 python:
-  - 2.6
   - 2.7
   - 3.4
   - 3.5
   - 3.6
   - pypy
-  - pypy3
 matrix:
   include:
+  - python: 2.6
+    dist: trusty
+  - python: pypy3
+    dist: trusty
   - python: 3.6
     env: TOXENV=flake8
   - python: 3.6
     env: TOXENV=docs
-  - python: 3.7
-    dist: xenial
 install: pip install tox
 script: tox -e "${TOXENV:-$(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 
's/pypypy/pypy/')}"

-----------------------------------------------------------------------

Summary of changes:
 .travis.yml | 8 ++++----
 setup.cfg   | 4 ++++
 2 files changed, 8 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
python-stdnum