Skip to content

Commit 3a4e36b

Browse files
Inserido teste com pytest
close #21
1 parent e4d778c commit 3a4e36b

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ python:
55
install:
66
- pip install -q -r requirements-dev.txt
77
- flake8
8+
- pytest Libpythonpro

Libpythonpro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1'
1+
__version__ = '0.2'

Libpythonpro/tests/__init__.py

Whitespace-only changes.

Libpythonpro/tests/test_exemplo.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def test_int():
2+
assert 1 == 0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def find_package_data(
117117
long_description_content_type='text/markdown',
118118
author=AUTHOR,
119119
author_email=AUTHOR_EMAIL,
120-
license=read('LICENSE'),
120+
license=read('GNU AFFERO GENERAL PUBLIC LICENSE'),
121121
url=URL,
122122
packages=find_packages(exclude=["tests.*", "tests"]),
123123
package_data=find_package_data(PACKAGE, only_in_packages=False),

0 commit comments

Comments
 (0)