__init__.py 784 B

1234567891011121314151617181920
  1. """Testing support (tools to test IPython itself).
  2. """
  3. #-----------------------------------------------------------------------------
  4. # Copyright (C) 2009-2011 The IPython Development Team
  5. #
  6. # Distributed under the terms of the BSD License. The full license is in
  7. # the file COPYING, distributed as part of this software.
  8. #-----------------------------------------------------------------------------
  9. import os
  10. #-----------------------------------------------------------------------------
  11. # Constants
  12. #-----------------------------------------------------------------------------
  13. # We scale all timeouts via this factor, slow machines can increase it
  14. IPYTHON_TESTING_TIMEOUT_SCALE = float(os.getenv(
  15. 'IPYTHON_TESTING_TIMEOUT_SCALE', 1))