1
0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-09-20 19:32:05 +02:00

Reverting usage of python setup.py test

This commit is contained in:
Joakim Hamren 2016-01-20 09:10:48 +01:00
parent e3ca6c5f43
commit 3723f573d3
2 changed files with 2 additions and 5 deletions

View File

@ -7,5 +7,6 @@ python:
- "3.4"
- "3.5"
install:
- pip install six blist unittest2 pytz
- python setup.py install
script: python setup.py test
script: python tests/tests.py

View File

@ -55,8 +55,6 @@ try:
finally:
f.close()
requires = ['nose2', 'unittest2', 'six', 'blist', 'pytz']
setup (name = 'ujson',
version = get_version(),
description = "Ultra fast JSON encoder and decoder for Python",
@ -69,6 +67,4 @@ setup (name = 'ujson',
platforms=['any'],
url="http://www.esn.me",
classifiers=CLASSIFIERS,
tests_require=requires,
test_suite="nose2.collector.collector"
)