File: test_helpers.py

package info (click to toggle)
python-astropy-helpers 1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 756 kB
  • ctags: 698
  • sloc: python: 5,929; ansic: 88; makefile: 11
file content (13 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
from __future__ import (absolute_import, division, print_function,
                        unicode_literals)

import warnings

from .commands.test import AstropyTest


# Leaving this module here for now, but really it needn't exist
# (and it's doubtful that any code depends on it anymore)
warnings.warn('The astropy_helpers.test_helpers module is deprecated as '
              'of version 1.1.0; the AstropyTest command can be found in '
              'astropy_helpers.commands.test.', DeprecationWarning)