]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Coverage reporting
authorŁukasz Langa <lukasz@langa.pl>
Mon, 26 Mar 2018 07:49:21 +0000 (00:49 -0700)
committerŁukasz Langa <lukasz@langa.pl>
Mon, 26 Mar 2018 07:49:21 +0000 (00:49 -0700)
.coveragerc [new file with mode: 0644]
.travis.yml
README.md

diff --git a/.coveragerc b/.coveragerc
new file mode 100644 (file)
index 0000000..7abb9e5
--- /dev/null
@@ -0,0 +1,4 @@
+[report]
+omit =
+  blib2to3/*
+  */site-packages/*
index 8e880192334daf34b3b5f01fdf11802d3ee6066c..5452f0f7258c1683bca80a417553a0514fd3ded5 100644 (file)
@@ -2,12 +2,14 @@ sudo: false
 language: python
 cache: pip
 before_script:
-- pip install flake8 flake8-bugbear mypy
+- pip install coverage coveralls flake8 flake8-bugbear mypy
 - pip install -e .
 script:
-- python setup.py test
+- coverage run tests/test_black.py
 - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then mypy black.py tests/test_black.py; fi
 - if [[ $TRAVIS_PYTHON_VERSION == '3.6-dev' ]]; then flake8 black.py tests/test_black.py; fi
+after_success:
+- coveralls
 notifications:
   on_success: change
   on_failure: always
index 536c6eedb9dcca1d4de7c7e24440e28dba20893c..c5166b8563455f862b19718eb57d2f2f5b9c17b3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # black
 
-[![Build Status](https://travis-ci.org/ambv/black.svg?branch=master)](https://travis-ci.org/ambv/black) [![Documentation Status](http://readthedocs.org/projects/black/badge/?version=latest)](http://black.readthedocs.io/en/latest/?badge=latest) ![License: MIT](https://img.shields.io/github/license/ambv/black.svg) ![PyPI](https://img.shields.io/pypi/v/black.svg) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
+[![Build Status](https://travis-ci.org/ambv/black.svg?branch=master)](https://travis-ci.org/ambv/black) [![Documentation Status](http://readthedocs.org/projects/black/badge/?version=latest)](http://black.readthedocs.io/en/latest/?badge=latest) [![Coverage Status](https://coveralls.io/repos/github/ambv/black/badge.svg?branch=master)](https://coveralls.io/github/ambv/black?branch=master) ![License: MIT](https://img.shields.io/github/license/ambv/black.svg) ![PyPI](https://img.shields.io/pypi/v/black.svg) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
 
 > Any color you like.