buildframework/helium/builder/python/lib/nosetests-script.py
author Bob Rosenberg <bob.rosenberg@nokia.com>
Mon, 13 Sep 2010 13:52:18 +0100
changeset 656 88e01c8f013e
parent 587 85df38eb4012
permissions -rw-r--r--
Fix merging bug where downstream items somtimes got ignored if they appear after an upstream-only item. Also, reduce the severity of the validation error if a tech-domain is not recognised on a non-Foundation package.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     1
#!C:\APPS\ACTPYT~1\python.exe
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     2
# EASY-INSTALL-ENTRY-SCRIPT: 'nose==0.10.4','console_scripts','nosetests'
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     3
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     4
import sys
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     5
from pkg_resources import load_entry_point
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     6
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     7
sys.exit(
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     8
   load_entry_point('nose==0.11.1', 'console_scripts', 'nosetests')()
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     9
)