##// END OF EJS Templates
remove a few more obsolete twisted notes
MinRK -
Show More
@@ -415,9 +415,6 b' def run_iptest():'
415 415
416 416 argv = sys.argv + [ '--detailed-errors', # extra info in tracebacks
417 417
418 # Loading ipdoctest causes problems with Twisted, but
419 # our test suite runner now separates things and runs
420 # all Twisted tests with trial.
421 418 '--with-ipdoctest',
422 419 '--ipdoctest-tests','--ipdoctest-extension=txt',
423 420
@@ -456,7 +453,7 b' def run_iptestall():'
456 453 This function constructs :class:`IPTester` instances for all IPython
457 454 modules and package and then runs each of them. This causes the modules
458 455 and packages of IPython to be tested each in their own subprocess using
459 nose or twisted.trial appropriately.
456 nose.
460 457 """
461 458
462 459 runners = make_runners()
@@ -1,14 +1,9 b''
1 """Generic testing tools that do NOT depend on Twisted.
1 """Generic testing tools.
2 2
3 3 In particular, this module exposes a set of top-level assert* functions that
4 4 can be used in place of nose.tools.assert* in method generators (the ones in
5 5 nose can not, at least as of nose 0.10.4).
6 6
7 Note: our testing package contains testing.util, which does depend on Twisted
8 and provides utilities for tests that manage Deferreds. All testing support
9 tools that only depend on nose, IPython or the standard library should go here
10 instead.
11
12 7
13 8 Authors
14 9 -------
General Comments 0
You need to be logged in to leave comments. Login now