From 0bf3d51d20e48d920d7922469d3fbe872f97a24b Mon Sep 17 00:00:00 2001 From: Anton Beloglazov Date: Thu, 26 Jul 2012 11:20:06 +1000 Subject: [PATCH] Test of failing tests --- run_tests.sh | 2 +- setup.py | 2 +- tests/test_collector.py | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/run_tests.sh b/run_tests.sh index 96801dc..60ea44c 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -1,4 +1,4 @@ #!/bin/sh python2 setup.py -q test -rm -rf openstack_neat.egg-info +rm -rf openstack_neat.egg-info distribute_setup.pyc diff --git a/setup.py b/setup.py index a388984..52e8f3a 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,6 @@ setup( platforms='any', packages=find_packages(), - test_suite='tests', + test_suite='tests', tests_require=['pyqcy'], ) diff --git a/tests/test_collector.py b/tests/test_collector.py index 2e30d01..61caab9 100644 --- a/tests/test_collector.py +++ b/tests/test_collector.py @@ -8,4 +8,8 @@ class Arithmetic(TestCase): x=int_(min=0), y=int_(min=0) ): the_sum = x + y - assert the_sum >= x and the_sum >= y + assert the_sum >= x and the_sum < y + + @qc + def dumb(): + assert True