コード例 #1
0
ファイル: run_e2e_tests.py プロジェクト: echo0327/oppia
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=[])
コード例 #2
0
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()
コード例 #3
0
def setup_and_install_dependencies(skip_install):
    """Run the setup and installation scripts."""
    if not skip_install:
        install_third_party_libs.main()