From: Zooko O'Whielacronx Date: Sat, 21 Apr 2007 14:49:08 +0000 (-0700) Subject: zfec: make "./setup.py test" do the right thing X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~2 X-Git-Url: https://git.rkrishnan.org/simplejson/encoder.py.html?a=commitdiff_plain;h=0bd9afdfb85558b46543450ef9937ba045b42bf4;p=tahoe-lafs%2Ftahoe-lafs.git zfec: make "./setup.py test" do the right thing --- diff --git a/src/zfec/setup.py b/src/zfec/setup.py index 1609fb46..b1672703 100644 --- a/src/zfec/setup.py +++ b/src/zfec/setup.py @@ -70,4 +70,5 @@ setup(name='zfec', classifiers=trove_classifiers, entry_points = { 'console_scripts': [ 'zfec = zfec.cmdline.zfec:main', 'zunfec = zfec.cmdline.zunfec:main' ] }, ext_modules=[Extension('_fec', ['zfec/fec.c', 'zfec/_fecmodule.c',], extra_link_args=extra_link_args, extra_compile_args=extra_compile_args, undef_macros=undef_macros),], + test_suite="zfec.test.test_zfec", )