mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Merge pull request #933 from abarth/rm_only
Remove --only from run_tests
This commit is contained in:
commit
2b72616971
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user