Skip to content

Commit 611e31f

Browse files
committed
Drop coverage
1 parent 6717bd1 commit 611e31f

File tree

3 files changed

+28
-35
lines changed

3 files changed

+28
-35
lines changed

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@ matrix:
1818

1919
install:
2020
- travis_retry pip install pep8==1.7.0
21-
- travis_retry pip install python-coveralls
2221
- travis_retry pip install -e .
2322
- travis_retry pip install $DJANGO --upgrade
2423
script:
25-
- coverage run --source=stream_django setup.py test
24+
- setup.py test
2625
after_script:
2726
# ensure we validate against pep standards
28-
- "pep8 --exclude=migrations --ignore=E501,E225,W293 stream"
29-
after_success:
30-
- coveralls
27+
- 'pep8 --exclude=migrations --ignore=E501,E225,W293 stream'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Stream Django
2-
[![Build Status](https://travis-ci.org/GetStream/stream-django.svg?branch=master)](https://travis-ci.org/GetStream/stream-django) [![Coverage Status](https://coveralls.io/repos/github/GetStream/stream-django/badge.svg?branch=master)](https://coveralls.io/github/GetStream/stream-django?branch=master) [![PyPI version](https://badge.fury.io/py/stream-django.svg)](http://badge.fury.io/py/stream-django)
2+
[![Build Status](https://travis-ci.org/GetStream/stream-django.svg?branch=master)](https://travis-ci.org/GetStream/stream-django) [![PyPI version](https://badge.fury.io/py/stream-django.svg)](http://badge.fury.io/py/stream-django)
33

44
[stream-django](https://github.com/GetStream/stream-django) is a Django client for [Stream](https://getstream.io/), it supports Django from 1.5 up to and including 2.2 using Python 2.7 and 3.4, 3.5, 3.6 and 3.7.
55

setup.py

Lines changed: 25 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,50 +3,46 @@
33
from setuptools import setup
44

55

6-
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
6+
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
77
README = readme.read()
88

99
if sys.version_info < (3, 0, 0):
10-
django = 'django>=1.11.29,<2.0'
10+
django = "django>=1.11.29,<2.0"
1111
else:
12-
django = 'django>=2.0,<3.2' # checked https://docs.djangoproject.com/en/dev/releases/3.1/#backwards-incompatible-3-1
12+
django = "django>=2.0,<3.2" # checked https://docs.djangoproject.com/en/dev/releases/3.1/#backwards-incompatible-3-1
1313

14-
requirements = [
15-
django,
16-
'stream-python>=3.0.1',
17-
'pytz'
18-
]
14+
requirements = [django, "stream-python>=3.0.1", "pytz"]
1915

2016
extras_require = {
21-
'test': ['httpretty==0.9.5', 'coverage'],
17+
"test": ["httpretty==0.9.5"],
2218
}
2319

2420
setup(
25-
name='stream-django',
26-
version='1.6.2',
27-
packages=['stream_django'],
21+
name="stream-django",
22+
version="1.6.2",
23+
packages=["stream_django"],
2824
include_package_data=True,
2925
install_requires=requirements,
3026
extras_require=extras_require,
31-
tests_require=['stream_django[test]'],
32-
test_suite='runtests.runtests',
33-
license='BSD License',
34-
description='A Django app to build activity, news and notification feeds.',
27+
tests_require=["stream_django[test]"],
28+
test_suite="runtests.runtests",
29+
license="BSD License",
30+
description="A Django app to build activity, news and notification feeds.",
3531
long_description_content_type="text/markdown",
3632
long_description=README,
37-
url='https://getstream.io/',
38-
author='Tommaso Barbugli',
39-
author_email='[email protected]',
33+
url="https://getstream.io/",
34+
author="Tommaso Barbugli",
35+
author_email="[email protected]",
4036
classifiers=[
41-
'Environment :: Web Environment',
42-
'Framework :: Django',
43-
'Intended Audience :: Developers',
44-
'License :: OSI Approved :: BSD License',
45-
'Operating System :: OS Independent',
46-
'Programming Language :: Python',
47-
'Programming Language :: Python :: 2.7',
48-
'Programming Language :: Python :: 3',
49-
'Topic :: Internet :: WWW/HTTP',
50-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
37+
"Environment :: Web Environment",
38+
"Framework :: Django",
39+
"Intended Audience :: Developers",
40+
"License :: OSI Approved :: BSD License",
41+
"Operating System :: OS Independent",
42+
"Programming Language :: Python",
43+
"Programming Language :: Python :: 2.7",
44+
"Programming Language :: Python :: 3",
45+
"Topic :: Internet :: WWW/HTTP",
46+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
5147
],
5248
)

0 commit comments

Comments
 (0)