Merge pull request #933 from abarth/rm_only

Remove --only from run_tests
This commit is contained in:
Adam Barth 2015-08-28 14:52:28 -07:00
commit 2b72616971

View File

@ -24,7 +24,6 @@ def main():
parser.add_argument('--config', default='Debug')
parser.add_argument('--debug', dest='config', action='store_const', const='Debug')
parser.add_argument('--release', dest='config', action='store_const', const='Release')
parser.add_argument('--only', help='Run only the specified test')
args, remaining = parser.parse_known_args()
build_dir = os.path.join(SRC_ROOT, 'out', args.config)
@ -35,13 +34,6 @@ def main():
elif sys.platform == 'darwin':
sky_shell = os.path.join(build_dir, 'SkyShell.app', 'Contents', 'MacOS', 'SkyShell')
if args.only:
return subprocess.call([
sky_shell,
'--package-root=%s' % PACKAGES_DIR,
args.only,
])
env = os.environ.copy()
env['PUB_CACHE'] = PUB_CACHE
env['SKY_SHELL'] = sky_shell