mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Broken in https://github.com/galaxyproject/galaxy/pull/2564 Also update scripts/nosetests.py
12 lines
314 B
Python
Executable File
12 lines
314 B
Python
Executable File
#!/usr/bin/env python
|
|
# EASY-INSTALL-ENTRY-SCRIPT: 'nose','console_scripts','nosetests'
|
|
# __requires__ = 'nose'
|
|
import sys
|
|
|
|
from pkg_resources import load_entry_point
|
|
|
|
assert sys.version_info[:2] >= ( 2, 7 )
|
|
|
|
nose_core_TestProgram = load_entry_point('nose', 'console_scripts', 'nosetests')
|
|
nose_core_TestProgram()
|