def setup_and_install_dependencies(skip_install): """Run the setup and installation scripts.""" if not skip_install: install_third_party_libs.main() setup.main(args=[]) setup_gae.main(args=[]) if os.getenv('TRAVIS'): install_chrome_on_travis.main(args=[])
def install_third_party_libraries(skip_install: bool) -> None: """Run the installation script. Args: skip_install: bool. Whether to skip running the installation script. """ if not skip_install: install_third_party_libs.main()
def setup_and_install_dependencies(skip_install): """Run the setup and installation scripts.""" if not skip_install: install_third_party_libs.main()