From: Zooko O'Whielacronx zooko@zooko.com Date: Sat, 21 Apr 2007 14:49:08 +0000 (+0530) Subject: zfec: make "./setup.py test" do the right thing X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=3ba729e2b214619c1b3a9913ff5c87a457570061;p=tahoe-lafs%2Fzfec.git zfec: make "./setup.py test" do the right thing darcs-hash:54e91a1c7d16ccfe3b921fd6899f1e9c95b5c762 --- diff --git a/zfec/setup.py b/zfec/setup.py index 1609fb4..b167270 100755 --- a/zfec/setup.py +++ b/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", )