├── .coveragerc ├── .gitignore ├── .travis.yml ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASING.md ├── cloudbuild.yaml ├── cloudbuild_benchmark.yaml ├── cloudbuild_client_test.yaml ├── cloudbuild_interpreters.yaml ├── cloudbuild_test.yaml ├── nox.py ├── perf_dashboard ├── __init__.py ├── bq_utils.py ├── posts_stats.py └── python_clientlibs_download.py ├── python-interpreter-builder ├── .dockerignore ├── .gitignore ├── DEBIAN │ └── control.in ├── Dockerfile.in ├── README.md └── scripts │ ├── build-python-3.4.sh │ ├── build-python-3.5.sh │ ├── build-python-3.6.sh │ ├── build-python-3.7.sh │ └── package-python.sh ├── runtime-image ├── .gitignore ├── Dockerfile.in ├── resources │ ├── apt-packages.txt │ ├── requirements-virtualenv.txt │ └── requirements.txt └── scripts │ └── install-apt-packages.sh ├── scripts ├── data │ ├── Dockerfile.entrypoint.template │ ├── Dockerfile.install_app │ ├── Dockerfile.preamble.template │ ├── Dockerfile.python_compat │ ├── Dockerfile.requirements_txt │ ├── Dockerfile.virtualenv.template │ ├── dockerignore │ └── dockerignore.python_compat ├── deploy_check.sh ├── gen_dockerfile.py ├── gen_dockerfile_test.py ├── integration-test.sh ├── local_cloudbuild.py ├── local_cloudbuild_test.py ├── release.sh ├── requirements-test.txt ├── testdata │ ├── cloudbuild_builtin_substitutions.yaml │ ├── cloudbuild_difficult_cleanup.yaml │ ├── cloudbuild_err_not_found.yaml │ ├── cloudbuild_err_rc1.yaml │ ├── cloudbuild_ok.yaml │ ├── cloudbuild_ok.yaml_golden.sh │ ├── cloudbuild_user_substitutions.yaml │ ├── hello_world │ │ ├── app.yaml │ │ ├── main.py │ │ ├── main_test.py │ │ └── requirements.txt │ ├── hello_world_compat │ │ ├── app.yaml │ │ └── main.py │ ├── hello_world_compat_golden │ │ ├── .dockerignore │ │ └── Dockerfile │ └── hello_world_golden │ │ ├── .dockerignore │ │ └── Dockerfile ├── validation_utils.py └── validation_utils_test.py └── tests ├── benchmark ├── .gitignore ├── Dockerfile.in ├── benchmark_between_releases.sh └── generate_csv.py ├── deploy_check ├── app.yaml ├── main.py └── requirements.txt ├── eventlet ├── .gitignore ├── Dockerfile.in ├── README.md └── requirements.txt ├── google-cloud-python ├── .gitignore ├── Dockerfile.in └── run_unit_tests.sh ├── integration ├── .gitignore ├── Dockerfile.in ├── app.yaml ├── requirements.txt └── server.py ├── license-test └── license-test.yaml ├── no-virtualenv └── no-virtualenv.yaml ├── python2-libraries ├── Dockerfile ├── python2-libraries.yaml └── requirements.txt ├── python3-libraries ├── Dockerfile ├── python3-libraries.yaml └── requirements.txt └── virtualenv ├── virtualenv_default.yaml ├── virtualenv_python27.yaml ├── virtualenv_python34.yaml ├── virtualenv_python35.yaml ├── virtualenv_python36.yaml └── virtualenv_python37.yaml /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | exclude_lines = 6 | pragma: no cover 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/RELEASING.md -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /cloudbuild_benchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/cloudbuild_benchmark.yaml -------------------------------------------------------------------------------- /cloudbuild_client_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/cloudbuild_client_test.yaml -------------------------------------------------------------------------------- /cloudbuild_interpreters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/cloudbuild_interpreters.yaml -------------------------------------------------------------------------------- /cloudbuild_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/cloudbuild_test.yaml -------------------------------------------------------------------------------- /nox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/nox.py -------------------------------------------------------------------------------- /perf_dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perf_dashboard/bq_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/perf_dashboard/bq_utils.py -------------------------------------------------------------------------------- /perf_dashboard/posts_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/perf_dashboard/posts_stats.py -------------------------------------------------------------------------------- /perf_dashboard/python_clientlibs_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/perf_dashboard/python_clientlibs_download.py -------------------------------------------------------------------------------- /python-interpreter-builder/.dockerignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-interpreter-builder/.gitignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /python-interpreter-builder/DEBIAN/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/DEBIAN/control.in -------------------------------------------------------------------------------- /python-interpreter-builder/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/Dockerfile.in -------------------------------------------------------------------------------- /python-interpreter-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/README.md -------------------------------------------------------------------------------- /python-interpreter-builder/scripts/build-python-3.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/scripts/build-python-3.4.sh -------------------------------------------------------------------------------- /python-interpreter-builder/scripts/build-python-3.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/scripts/build-python-3.5.sh -------------------------------------------------------------------------------- /python-interpreter-builder/scripts/build-python-3.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/scripts/build-python-3.6.sh -------------------------------------------------------------------------------- /python-interpreter-builder/scripts/build-python-3.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/scripts/build-python-3.7.sh -------------------------------------------------------------------------------- /python-interpreter-builder/scripts/package-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/python-interpreter-builder/scripts/package-python.sh -------------------------------------------------------------------------------- /runtime-image/.gitignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /runtime-image/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/runtime-image/Dockerfile.in -------------------------------------------------------------------------------- /runtime-image/resources/apt-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/runtime-image/resources/apt-packages.txt -------------------------------------------------------------------------------- /runtime-image/resources/requirements-virtualenv.txt: -------------------------------------------------------------------------------- 1 | virtualenv==20.0.31 2 | -------------------------------------------------------------------------------- /runtime-image/resources/requirements.txt: -------------------------------------------------------------------------------- 1 | pip 2 | setuptools==40.2.0 3 | wheel==0.31.1 4 | -------------------------------------------------------------------------------- /runtime-image/scripts/install-apt-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/runtime-image/scripts/install-apt-packages.sh -------------------------------------------------------------------------------- /scripts/data/Dockerfile.entrypoint.template: -------------------------------------------------------------------------------- 1 | CMD {entrypoint} 2 | -------------------------------------------------------------------------------- /scripts/data/Dockerfile.install_app: -------------------------------------------------------------------------------- 1 | ADD . /app/ 2 | -------------------------------------------------------------------------------- /scripts/data/Dockerfile.preamble.template: -------------------------------------------------------------------------------- 1 | FROM {base_image} 2 | -------------------------------------------------------------------------------- /scripts/data/Dockerfile.python_compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/data/Dockerfile.python_compat -------------------------------------------------------------------------------- /scripts/data/Dockerfile.requirements_txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/data/Dockerfile.requirements_txt -------------------------------------------------------------------------------- /scripts/data/Dockerfile.virtualenv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/data/Dockerfile.virtualenv.template -------------------------------------------------------------------------------- /scripts/data/dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/data/dockerignore -------------------------------------------------------------------------------- /scripts/data/dockerignore.python_compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/data/dockerignore.python_compat -------------------------------------------------------------------------------- /scripts/deploy_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/deploy_check.sh -------------------------------------------------------------------------------- /scripts/gen_dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/gen_dockerfile.py -------------------------------------------------------------------------------- /scripts/gen_dockerfile_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/gen_dockerfile_test.py -------------------------------------------------------------------------------- /scripts/integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/integration-test.sh -------------------------------------------------------------------------------- /scripts/local_cloudbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/local_cloudbuild.py -------------------------------------------------------------------------------- /scripts/local_cloudbuild_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/local_cloudbuild_test.py -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/requirements-test.txt -------------------------------------------------------------------------------- /scripts/testdata/cloudbuild_builtin_substitutions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/cloudbuild_builtin_substitutions.yaml -------------------------------------------------------------------------------- /scripts/testdata/cloudbuild_difficult_cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/cloudbuild_difficult_cleanup.yaml -------------------------------------------------------------------------------- /scripts/testdata/cloudbuild_err_not_found.yaml: -------------------------------------------------------------------------------- 1 | steps: 2 | - name: debian 3 | args: ['/expected file not found'] 4 | -------------------------------------------------------------------------------- /scripts/testdata/cloudbuild_err_rc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/cloudbuild_err_rc1.yaml -------------------------------------------------------------------------------- /scripts/testdata/cloudbuild_ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/cloudbuild_ok.yaml -------------------------------------------------------------------------------- /scripts/testdata/cloudbuild_ok.yaml_golden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/cloudbuild_ok.yaml_golden.sh -------------------------------------------------------------------------------- /scripts/testdata/cloudbuild_user_substitutions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/cloudbuild_user_substitutions.yaml -------------------------------------------------------------------------------- /scripts/testdata/hello_world/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world/app.yaml -------------------------------------------------------------------------------- /scripts/testdata/hello_world/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world/main.py -------------------------------------------------------------------------------- /scripts/testdata/hello_world/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world/main_test.py -------------------------------------------------------------------------------- /scripts/testdata/hello_world/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.0.2 2 | gunicorn==19.9.0 3 | -------------------------------------------------------------------------------- /scripts/testdata/hello_world_compat/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world_compat/app.yaml -------------------------------------------------------------------------------- /scripts/testdata/hello_world_compat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world_compat/main.py -------------------------------------------------------------------------------- /scripts/testdata/hello_world_compat_golden/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world_compat_golden/.dockerignore -------------------------------------------------------------------------------- /scripts/testdata/hello_world_compat_golden/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world_compat_golden/Dockerfile -------------------------------------------------------------------------------- /scripts/testdata/hello_world_golden/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world_golden/.dockerignore -------------------------------------------------------------------------------- /scripts/testdata/hello_world_golden/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/testdata/hello_world_golden/Dockerfile -------------------------------------------------------------------------------- /scripts/validation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/validation_utils.py -------------------------------------------------------------------------------- /scripts/validation_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/scripts/validation_utils_test.py -------------------------------------------------------------------------------- /tests/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /tests/benchmark/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/benchmark/Dockerfile.in -------------------------------------------------------------------------------- /tests/benchmark/benchmark_between_releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/benchmark/benchmark_between_releases.sh -------------------------------------------------------------------------------- /tests/benchmark/generate_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/benchmark/generate_csv.py -------------------------------------------------------------------------------- /tests/deploy_check/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python 2 | env: flex 3 | entrypoint: gunicorn -b :$PORT main:app 4 | -------------------------------------------------------------------------------- /tests/deploy_check/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/deploy_check/main.py -------------------------------------------------------------------------------- /tests/deploy_check/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.0.2 2 | gunicorn==19.9.0 3 | -------------------------------------------------------------------------------- /tests/eventlet/.gitignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | main.py 3 | -------------------------------------------------------------------------------- /tests/eventlet/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/eventlet/Dockerfile.in -------------------------------------------------------------------------------- /tests/eventlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/eventlet/README.md -------------------------------------------------------------------------------- /tests/eventlet/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/eventlet/requirements.txt -------------------------------------------------------------------------------- /tests/google-cloud-python/.gitignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /tests/google-cloud-python/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/google-cloud-python/Dockerfile.in -------------------------------------------------------------------------------- /tests/google-cloud-python/run_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/google-cloud-python/run_unit_tests.sh -------------------------------------------------------------------------------- /tests/integration/.gitignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /tests/integration/Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/integration/Dockerfile.in -------------------------------------------------------------------------------- /tests/integration/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: custom 2 | env: flex 3 | -------------------------------------------------------------------------------- /tests/integration/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/integration/requirements.txt -------------------------------------------------------------------------------- /tests/integration/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/integration/server.py -------------------------------------------------------------------------------- /tests/license-test/license-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/license-test/license-test.yaml -------------------------------------------------------------------------------- /tests/no-virtualenv/no-virtualenv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/no-virtualenv/no-virtualenv.yaml -------------------------------------------------------------------------------- /tests/python2-libraries/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/python2-libraries/Dockerfile -------------------------------------------------------------------------------- /tests/python2-libraries/python2-libraries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/python2-libraries/python2-libraries.yaml -------------------------------------------------------------------------------- /tests/python2-libraries/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/python2-libraries/requirements.txt -------------------------------------------------------------------------------- /tests/python3-libraries/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/python3-libraries/Dockerfile -------------------------------------------------------------------------------- /tests/python3-libraries/python3-libraries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/python3-libraries/python3-libraries.yaml -------------------------------------------------------------------------------- /tests/python3-libraries/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/python3-libraries/requirements.txt -------------------------------------------------------------------------------- /tests/virtualenv/virtualenv_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/virtualenv/virtualenv_default.yaml -------------------------------------------------------------------------------- /tests/virtualenv/virtualenv_python27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/virtualenv/virtualenv_python27.yaml -------------------------------------------------------------------------------- /tests/virtualenv/virtualenv_python34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/virtualenv/virtualenv_python34.yaml -------------------------------------------------------------------------------- /tests/virtualenv/virtualenv_python35.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/virtualenv/virtualenv_python35.yaml -------------------------------------------------------------------------------- /tests/virtualenv/virtualenv_python36.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/virtualenv/virtualenv_python36.yaml -------------------------------------------------------------------------------- /tests/virtualenv/virtualenv_python37.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/python-runtime/HEAD/tests/virtualenv/virtualenv_python37.yaml --------------------------------------------------------------------------------