Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aws
GitHub Repository: aws/aws-cli
Path: blob/develop/scripts/ci/run-check
1566 views
#!/usr/bin/env python
"""Script to run non-test checks on the codebase

Currently currently consists of only a manifest-check.
"""
from subprocess import check_call, Popen, PIPE


def run(command):
    return check_call(command, shell=True)


def main():
    run('check-manifest')


if __name__ == "__main__":
   main()