You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 28, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.rst
+43-2Lines changed: 43 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,34 @@ python-everywhere
12
12
|pypi-dm|
13
13
|pypi-dd|
14
14
|gitter|
15
+
|code-climate|
15
16
16
17
18
+
This is a sample to help you with
19
+
integrating services into your Python project !
20
+
17
21
Inspired by `rust-everywhere <https://github.com/japaric/rust-everywhere>`_.
18
22
19
23
24
+
.. contents:: Table of Contents
25
+
26
+
27
+
28
+
Features
29
+
========================================
30
+
31
+
* Travis CI integration
32
+
* pytest integration for testing
33
+
* flake8 integration (invoke by pytest)
34
+
* pylint integration (invoke by pytest)
35
+
* coverage integration (invoke by pytest)
36
+
* pydocstyle integration
37
+
* mypy integration (optional static type checker)
38
+
* Publish to PyPI with Travis CI automatically (when tagging new release)
39
+
* Publish to GitHub with Travis CI automatically (when tagging new release)
40
+
41
+
42
+
20
43
Installation
21
44
========================================
22
45
@@ -51,6 +74,15 @@ run your test code :
51
74
Here is the pytest's `documetation <https://pytest.org/latest/goodpractices.html#integrating-with-setuptools-python-setup-py-test-pytest-runner>`_ about integrating with setuptools.
52
75
53
76
77
+
Coverage
78
+
------------------------------
79
+
80
+
With ``coverage``, we can generate testing coverage report.
81
+
With ``pytest-cov`` and
82
+
``--cov-report html`` ``--cov-report term`` in the ``pytest.ini``,
83
+
we can generate testing coverage report along with running testing code.
0 commit comments