blob: 330e5afb71890ea9873ff6160a07c40bf7d5db82 [file]
#!/usr/bin/env vpython3
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
"""Runs simulation tests and lint on the standard recipe modules."""
from __future__ import annotations
import os
import sys
from subprocess import check_call
from test_env import ROOT_DIR
recipes_py = os.path.join(ROOT_DIR, 'recipes.py')
check_call([sys.executable, recipes_py, 'test', 'run'])
check_call([sys.executable, recipes_py, 'lint'])