Tweak setup.py for py.test (pytest?)

This commit is contained in:
Marc Abramowitz 2012-05-14 17:14:46 -07:00
parent e8c923d712
commit d807c60346
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,7 @@ if sys.argv[-1] == 'test':
print('py.test required.')
sys.exit(1)
os.system('pytest test_tablib.py')
os.system('py.test test_tablib.py')
sys.exit()
setup(
@ -70,4 +70,5 @@ setup(
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
),
tests_require=['pytest'],
)