Skip to content

Commit c59258f

Browse files
committed
removing useless dependency
1 parent 251f3fb commit c59258f

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ before_install:
1010
- sudo apt-get install python-dev libevent-dev
1111
- pip install --use-mirrors Cython
1212

13-
script: python setup.py test
13+
script: python -m unittest discover test
1414
install: python setup.py install

setup.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
except ImportError:
66
from distutils.core import setup
77

8-
test_require = ['unittest2', 'cherrypy']
9-
if sys.version_info < (3, 0):
10-
test_require.append('gevent')
11-
128
setup(name = "ws4py",
139
version = '0.3.0-beta',
1410
description = "WebSocket library for Python",
@@ -17,8 +13,6 @@
1713
url = "https://github.com/Lawouach/WebSocket-for-Python",
1814
download_url = "http://www.defuze.org/oss/ws4py/",
1915
packages = ["ws4py", "ws4py.client", "ws4py.server"],
20-
tests_require=test_require,
21-
test_suite='unittest2.collector',
2216
platforms = ["any"],
2317
license = 'BSD',
2418
long_description = "WebSocket library for Python",

0 commit comments

Comments
 (0)