##// END OF EJS Templates
Remove iptest and other Nose-dependent code
Remove iptest and other Nose-dependent code

File last commit:

r27042:360df2b6
r27042:360df2b6
Show More
__init__.py
20 lines | 784 B | text/x-python | PythonLexer
Fernando Perez
Make testing easier by exposing a top-level test() function....
r2397 """Testing support (tools to test IPython itself).
"""
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 #-----------------------------------------------------------------------------
Matthias BUSSONNIER
update copyright to 2011/20xx-2011...
r5390 # Copyright (C) 2009-2011 The IPython Development Team
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 #
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
Miro Hrončok
Tests: Allow setting a custom timeout scale...
r25049
import os
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 #-----------------------------------------------------------------------------
Miro Hrončok
Tests: Allow setting a custom timeout scale...
r25049 # Constants
#-----------------------------------------------------------------------------
# We scale all timeouts via this factor, slow machines can increase it
IPYTHON_TESTING_TIMEOUT_SCALE = float(os.getenv(
'IPYTHON_TESTING_TIMEOUT_SCALE', 1))