We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc0f294 commit d9aec67Copy full SHA for d9aec67
bpython/test/test_args.py
@@ -14,8 +14,10 @@
14
try:
15
from nose.plugins.attrib import attr
16
except ImportError:
17
- def attr(func, *args, **kwargs):
18
- return func
+ def attr(*args, **kwargs):
+ def identity(func):
19
+ return func
20
+ return identity
21
22
23
@attr(speed='slow')
bpython/test/test_crashers.py
@@ -27,8 +27,10 @@ class TrialTestCase(object):
27
28
29
30
31
32
33
34
35
TEST_CONFIG = os.path.join(os.path.dirname(__file__), "test.config")
36
0 commit comments