|
1 | | -# Copyright 2020 Google LLC |
| 1 | +# Copyright 2021 Google LLC |
2 | 2 | # |
3 | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
4 | 4 | # you may not use this file except in compliance with the License. |
|
14 | 14 |
|
15 | 15 | # Default TEST_CONFIG_OVERRIDE for python repos. |
16 | 16 |
|
17 | | -# You can copy this file into your directory, then it will be inported from |
| 17 | +# You can copy this file into your directory, then it will be imported from |
18 | 18 | # the noxfile.py. |
19 | 19 |
|
20 | 20 | # The source of truth: |
21 | | -# https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/noxfile_config.py |
| 21 | +# https://github.com/GoogleCloudPlatform/python-docs-samples/blob/main/noxfile_config.py |
22 | 22 |
|
23 | 23 | TEST_CONFIG_OVERRIDE = { |
24 | 24 | # You can opt out from the test for specific Python versions. |
25 | | - "ignored_versions": ["2.7"], |
| 25 | + "ignored_versions": ["2.7", "3.6"], |
26 | 26 | # Old samples are opted out of enforcing Python type hints |
27 | 27 | # All new samples should feature them |
28 | 28 | "enforce_type_hints": True, |
|
32 | 32 | # to use your own Cloud project. |
33 | 33 | "gcloud_project_env": "GOOGLE_CLOUD_PROJECT", |
34 | 34 | # 'gcloud_project_env': 'BUILD_SPECIFIC_GCLOUD_PROJECT', |
| 35 | + # If you need to use a specific version of pip, |
| 36 | + # change pip_version_override to the string representation |
| 37 | + # of the version number, for example, "20.2.4" |
| 38 | + "pip_version_override": None, |
35 | 39 | # A dictionary you want to inject into your test. Don't put any |
36 | 40 | # secrets here. These values will override predefined values. |
37 | 41 | "envs": {}, |
|
0 commit comments