Test of failing tests
This commit is contained in:
parent
2ba3aa33fa
commit
0bf3d51d20
@ -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
|
||||
|
2
setup.py
2
setup.py
@ -20,6 +20,6 @@ setup(
|
||||
platforms='any',
|
||||
|
||||
packages=find_packages(),
|
||||
test_suite='tests',
|
||||
test_suite='tests',
|
||||
tests_require=['pyqcy'],
|
||||
)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user