--toxenv implies --runtime

This commit is contained in:
Miro Hrončok 2019-08-13 14:05:14 +02:00
parent 7ba1a33967
commit c975fbe6ec

View File

@ -235,6 +235,8 @@ def main(argv):
)
args = parser.parse_args(argv)
if args.toxenv:
args.runtime = True
if args.extras and not args.runtime:
print_err('-x (--extras) are only useful with -r (--runtime)')
exit(1)