mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
using the following command: ``` autopep8 -i -r --exclude $(sed -e 's|^|./|' -e 's|/$||' .ci/flake8_blacklist.txt | paste -sd,) --select E201,E202 . ```
12 lines
312 B
Python
Executable File
12 lines
312 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()
|