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 75b4a0f commit f7aa4b2Copy full SHA for f7aa4b2
bpython/test/test_args.py
@@ -8,7 +8,14 @@
8
except ImportError:
9
import unittest
10
11
+try:
12
+ from nose.plugins.attrib import attr
13
+except ImportError:
14
+ def attr(func, *args, **kwargs):
15
+ return func
16
+
17
18
+@attr(speed='slow')
19
class TestExecArgs(unittest.TestCase):
20
def test_exec_dunder_file(self):
21
with tempfile.NamedTemporaryFile(mode="w") as f:
0 commit comments