Skip to content

Commit 1a3826b

Browse files
Merge pull request #145 from prashanth-sams/refactor
#146
2 parents 93fd371 + 035b67b commit 1a3826b

22 files changed

+67
-43
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: python
22
python:
33
- "3.8"
4-
install: pip install coveralls pytest-cov
5-
script: py.test --cov ./pytest_html_reporter/ unittests/
4+
install: pip install pytest pytest-cov coveralls Pillow
5+
script: py.test --cov ./pytest_html_reporter/ tests/unit/
66
after_success:
77
- coveralls

CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Log
22
==========
33

4+
0.1.9 (12/09/2020)
5+
-------------------
6+
- Optimize library size
7+
- Add unit tests
8+
49
0.1.8 (12/09/2020)
510
-------------------
611
- Replaced report path CLI

MANIFEST.in

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
include LICENSE
2-
include README.md
2+
include README.rst
33

4-
global-include *.txt *.py
4+
global-include *.py
5+
prune tests/
6+
prune test_draft/
7+
prune venv/
8+
exclude CHANGELOG.txt
9+
exclude requirements.txt

PHR.png

-5.97 KB
Binary file not shown.

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ pytest-html-reporter
1414
:target: https://travis-ci.com/prashanth-sams/pytest-html-reporter
1515
:alt: Build Status
1616

17+
.. image:: https://coveralls.io/repos/github/prashanth-sams/pytest-html-reporter/badge.svg?branch=master
18+
:target: https://coveralls.io/github/prashanth-sams/pytest-html-reporter?branch=master
19+
1720
.. image:: https://pepy.tech/badge/pytest-html-reporter
1821
:target: https://pepy.tech/project/pytest-html-reporter
1922
:alt: Downloads
@@ -106,4 +109,4 @@ Is there a demo available for this gem?
106109

107110
Yes, you can use this demo as an example, https://github.com/prashanth-sams/pytest-html-reporter::
108111

109-
$ pytest tests/
112+
$ pytest tests/functional/

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
coverage
21
pytest
32
pytest-cov
4-
selenium
53
coveralls
6-
PyYAML
4+
selenium

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(fname):
1313

1414
setup(
1515
name="pytest-html-reporter",
16-
version="0.1.8",
16+
version="0.1.9",
1717
author="Prashanth Sams",
1818
author_email="sams.prashanth@gmail.com",
1919
maintainer="Prashanth Sams",
@@ -25,7 +25,7 @@ def read(fname):
2525
keywords=["pytest", "py.test", "html", "reporter", "report"],
2626
packages=find_packages(),
2727
python_requires=">=3.5",
28-
install_requires=["pytest"],
28+
install_requires=["pytest", "Pillow"],
2929
classifiers=[
3030
"Framework :: Pytest",
3131
"Topic :: Software Development :: Testing",
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)