Package: python-nose Version: 1.1.2-2 Severity: important User: [email protected] Usertags: python2.7
--no-skip works with Python 2.6: | $ nosetests-2.6 --no-skip | E | ====================================================================== | ERROR: test.test_foo | ---------------------------------------------------------------------- | | ---------------------------------------------------------------------- | Ran 1 test in 0.002s | | FAILED (errors=1) But not with 2.7: | $ nosetests-2.7 --no-skip | | ---------------------------------------------------------------------- | Ran 1 test in 0.002s | | OK -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (990, 'unstable'), (500, 'experimental') Architecture: i386 (x86_64) Kernel: Linux 3.2.0-1-amd64 (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages python-nose depends on: ii python 2.7.2-10 ii python-pkg-resources 0.6.24-1 ii python2.6 2.6.7-4 ii python2.7 2.7.2-13 -- Jakub Wilk
from nose import SkipTest def test_foo(): raise SkipTest

