Skip to content

Commit 6197638

Browse files
authored
chore(deps): update dependency pytest to v6.2.1 (GoogleCloudPlatform#5076)
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pytest](https://docs.pytest.org/en/latest/) ([source](https://togithub.com/pytest-dev/pytest)) | minor | `==6.1.2` -> `==6.2.1` | --- ### Release Notes <details> <summary>pytest-dev/pytest</summary> ### [`v6.2.1`](https://togithub.com/pytest-dev/pytest/releases/6.2.1) [Compare Source](https://togithub.com/pytest-dev/pytest/compare/6.2.0...6.2.1) # pytest 6.2.1 (2020-12-15) ## Bug Fixes - [#&GoogleCloudPlatform#8203;7678](https://togithub.com/pytest-dev/pytest/issues/7678): Fixed bug where `ImportPathMismatchError` would be raised for files compiled in the host and loaded later from an UNC mounted path (Windows). - [#&GoogleCloudPlatform#8203;8132](https://togithub.com/pytest-dev/pytest/issues/8132): Fixed regression in `approx`: in 6.2.0 `approx` no longer raises `TypeError` when dealing with non-numeric types, falling back to normal comparison. Before 6.2.0, array types like tf.DeviceArray fell through to the scalar case, and happened to compare correctly to a scalar if they had only one element. After 6.2.0, these types began failing, because they inherited neither from standard Python number hierarchy nor from `numpy.ndarray`. `approx` now converts arguments to `numpy.ndarray` if they expose the array protocol and are not scalars. This treats array-like objects like numpy arrays, regardless of size. ### [`v6.2.0`](https://togithub.com/pytest-dev/pytest/releases/6.2.0) [Compare Source](https://togithub.com/pytest-dev/pytest/compare/6.1.2...6.2.0) # pytest 6.2.0 (2020-12-12) ## Breaking Changes - [#&GoogleCloudPlatform#8203;7808](https://togithub.com/pytest-dev/pytest/issues/7808): pytest now supports python3.6+ only. ## Deprecations - [#&GoogleCloudPlatform#8203;7469](https://togithub.com/pytest-dev/pytest/issues/7469): Directly constructing/calling the following classes/functions is now deprecated: - `_pytest.cacheprovider.Cache` - `_pytest.cacheprovider.Cache.for_config()` - `_pytest.cacheprovider.Cache.clear_cache()` - `_pytest.cacheprovider.Cache.cache_dir_from_config()` - `_pytest.capture.CaptureFixture` - `_pytest.fixtures.FixtureRequest` - `_pytest.fixtures.SubRequest` - `_pytest.logging.LogCaptureFixture` - `_pytest.pytester.Pytester` - `_pytest.pytester.Testdir` - `_pytest.recwarn.WarningsRecorder` - `_pytest.recwarn.WarningsChecker` - `_pytest.tmpdir.TempPathFactory` - `_pytest.tmpdir.TempdirFactory` These have always been considered private, but now issue a deprecation warning, which may become a hard error in pytest 7.0.0. - [#&GoogleCloudPlatform#8203;7530](https://togithub.com/pytest-dev/pytest/issues/7530): The `--strict` command-line option has been deprecated, use `--strict-markers` instead. We have plans to maybe in the future to reintroduce `--strict` and make it an encompassing flag for all strictness related options (`--strict-markers` and `--strict-config` at the moment, more might be introduced in the future). - [#&GoogleCloudPlatform#8203;7988](https://togithub.com/pytest-dev/pytest/issues/7988): The `@pytest.yield_fixture` decorator/function is now deprecated. Use pytest.fixture instead. `yield_fixture` has been an alias for `fixture` for a very long time, so can be search/replaced safely. ## Features - [#&GoogleCloudPlatform#8203;5299](https://togithub.com/pytest-dev/pytest/issues/5299): pytest now warns about unraisable exceptions and unhandled thread exceptions that occur in tests on Python>=3.8. See unraisable for more information. - [#&GoogleCloudPlatform#8203;7425](https://togithub.com/pytest-dev/pytest/issues/7425): New pytester fixture, which is identical to testdir but its methods return pathlib.Path when appropriate instead of `py.path.local`. This is part of the movement to use pathlib.Path objects internally, in order to remove the dependency to `py` in the future. Internally, the old Testdir &lt;\_pytest.pytester.Testdir> is now a thin wrapper around Pytester &lt;\_pytest.pytester.Pytester>, preserving the old interface. - [#&GoogleCloudPlatform#8203;7695](https://togithub.com/pytest-dev/pytest/issues/7695): A new hook was added, pytest_markeval_namespace which should return a dictionary. This dictionary will be used to augment the "global" variables available to evaluate skipif/xfail/xpass markers. Pseudo example `conftest.py`: ```{.sourceCode .python} def pytest_markeval_namespace(): return {"color": "red"} ``` `test_func.py`: ```{.sourceCode .python} @&GoogleCloudPlatform#8203;pytest.mark.skipif("color == 'blue'", reason="Color is not red") def test_func(): assert False ``` - [#&GoogleCloudPlatform#8203;8006](https://togithub.com/pytest-dev/pytest/issues/8006): It is now possible to construct a ~pytest.MonkeyPatch object directly as `pytest.MonkeyPatch()`, in cases when the monkeypatch fixture cannot be used. Previously some users imported it from the private \_pytest.monkeypatch.MonkeyPatch namespace. Additionally, MonkeyPatch.context &lt;pytest.MonkeyPatch.context> is now a classmethod, and can be used as `with MonkeyPatch.context() as mp: ...`. This is the recommended way to use `MonkeyPatch` directly, since unlike the `monkeypatch` fixture, an instance created directly is not `undo()`-ed automatically. ## Improvements - [#&GoogleCloudPlatform#8203;1265](https://togithub.com/pytest-dev/pytest/issues/1265): Added an `__str__` implementation to the ~pytest.pytester.LineMatcher class which is returned from `pytester.run_pytest().stdout` and similar. It returns the entire output, like the existing `str()` method. - [#&GoogleCloudPlatform#8203;2044](https://togithub.com/pytest-dev/pytest/issues/2044): Verbose mode now shows the reason that a test was skipped in the test's terminal line after the "SKIPPED", "XFAIL" or "XPASS". - [#&GoogleCloudPlatform#8203;7469](https://togithub.com/pytest-dev/pytest/issues/7469) The types of builtin pytest fixtures are now exported so they may be used in type annotations of test functions. The newly-exported types are: - `pytest.FixtureRequest` for the request fixture. - `pytest.Cache` for the cache fixture. - `pytest.CaptureFixture[str]` for the capfd and capsys fixtures. - `pytest.CaptureFixture[bytes]` for the capfdbinary and capsysbinary fixtures. - `pytest.LogCaptureFixture` for the caplog fixture. - `pytest.Pytester` for the pytester fixture. - `pytest.Testdir` for the testdir fixture. - `pytest.TempdirFactory` for the tmpdir_factory fixture. - `pytest.TempPathFactory` for the tmp_path_factory fixture. - `pytest.MonkeyPatch` for the monkeypatch fixture. - `pytest.WarningsRecorder` for the recwarn fixture. Constructing them is not supported (except for MonkeyPatch); they are only meant for use in type annotations. Doing so will emit a deprecation warning, and may become a hard-error in pytest 7.0. Subclassing them is also not supported. This is not currently enforced at runtime, but is detected by type-checkers such as mypy. - [#&GoogleCloudPlatform#8203;7527](https://togithub.com/pytest-dev/pytest/issues/7527): When a comparison between namedtuple &lt;collections.namedtuple> instances of the same type fails, pytest now shows the differing field names (possibly nested) instead of their indexes. - [#&GoogleCloudPlatform#8203;7615](https://togithub.com/pytest-dev/pytest/issues/7615): Node.warn &lt;\_pytest.nodes.Node.warn> now permits any subclass of Warning, not just PytestWarning &lt;pytest.PytestWarning>. - [#&GoogleCloudPlatform#8203;7701](https://togithub.com/pytest-dev/pytest/issues/7701): Improved reporting when using `--collected-only`. It will now show the number of collected tests in the summary stats. - [#&GoogleCloudPlatform#8203;7710](https://togithub.com/pytest-dev/pytest/issues/7710): Use strict equality comparison for non-numeric types in pytest.approx instead of raising TypeError. This was the undocumented behavior before 3.7, but is now officially a supported feature. - [#&GoogleCloudPlatform#8203;7938](https://togithub.com/pytest-dev/pytest/issues/7938): New `--sw-skip` argument which is a shorthand for `--stepwise-skip`. - [#&GoogleCloudPlatform#8203;8023](https://togithub.com/pytest-dev/pytest/issues/8023): Added `'node_modules'` to default value for norecursedirs. - [#&GoogleCloudPlatform#8203;8032](https://togithub.com/pytest-dev/pytest/issues/8032): doClassCleanups &lt;unittest.TestCase.doClassCleanups> (introduced in unittest in Python and 3.8) is now called appropriately. ## Bug Fixes - [#&GoogleCloudPlatform#8203;4824](https://togithub.com/pytest-dev/pytest/issues/4824): Fixed quadratic behavior and improved performance of collection of items using autouse fixtures and xunit fixtures. - [#&GoogleCloudPlatform#8203;7758](https://togithub.com/pytest-dev/pytest/issues/7758): Fixed an issue where some files in packages are getting lost from `--lf` even though they contain tests that failed. Regressed in pytest 5.4.0. - [#&GoogleCloudPlatform#8203;7911](https://togithub.com/pytest-dev/pytest/issues/7911): Directories created by by tmp_path and tmpdir are now considered stale after 3 days without modification (previous value was 3 hours) to avoid deleting directories still in use in long running test suites. - [#&GoogleCloudPlatform#8203;7913](https://togithub.com/pytest-dev/pytest/issues/7913): Fixed a crash or hang in pytester.spawn &lt;\_pytest.pytester.Pytester.spawn> when the readline module is involved. - [#&GoogleCloudPlatform#8203;7951](https://togithub.com/pytest-dev/pytest/issues/7951): Fixed handling of recursive symlinks when collecting tests. - [#&GoogleCloudPlatform#8203;7981](https://togithub.com/pytest-dev/pytest/issues/7981): Fixed symlinked directories not being followed during collection. Regressed in pytest 6.1.0. - [#&GoogleCloudPlatform#8203;8016](https://togithub.com/pytest-dev/pytest/issues/8016): Fixed only one doctest being collected when using `pytest --doctest-modules path/to/an/__init__.py`. ## Improved Documentation - [#&GoogleCloudPlatform#8203;7429](https://togithub.com/pytest-dev/pytest/issues/7429): Add more information and use cases about skipping doctests. - [#&GoogleCloudPlatform#8203;7780](https://togithub.com/pytest-dev/pytest/issues/7780): Classes which should not be inherited from are now marked `final class` in the API reference. - [#&GoogleCloudPlatform#8203;7872](https://togithub.com/pytest-dev/pytest/issues/7872): `_pytest.config.argparsing.Parser.addini()` accepts explicit `None` and `"string"`. - [#&GoogleCloudPlatform#8203;7878](https://togithub.com/pytest-dev/pytest/issues/7878): In pull request section, ask to commit after editing changelog and authors file. ## Trivial/Internal Changes - [#&GoogleCloudPlatform#8203;7802](https://togithub.com/pytest-dev/pytest/issues/7802): The `attrs` dependency requirement is now >=19.2.0 instead of >=17.4.0. - [#&GoogleCloudPlatform#8203;8014](https://togithub.com/pytest-dev/pytest/issues/8014): .pyc files created by pytest's assertion rewriting now conform to the newer PEP-552 format on Python>=3.7. (These files are internal and only interpreted by pytest itself.) </details> --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Never, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/GoogleCloudPlatform/python-docs-samples).
1 parent 01ed44b commit 6197638

File tree

151 files changed

+151
-151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+151
-151
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
responses==0.12.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
pytest-django==4.1.0
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
responses==0.12.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
responses==0.12.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
responses==0.12.1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
retrying==1.3.3
33
websocket-client==0.57.0
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
pytest-django==4.1.0
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1

auth/api-client/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1

bigquery/bqml/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
flaky==3.7.0
22
mock==4.0.3
3-
pytest==6.1.2
3+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
flaky==3.7.0

cdn/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mock==4.0.3
2-
pytest==6.1.2
2+
pytest==6.2.1

composer/rest/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1

compute/api/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
flaky==3.7.0

compute/auth/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3

compute/oslogin/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3
33
retrying==1.3.3
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
pandas==1.1.5
33
google-cloud-bigquery==2.6.1
44
pyarrow==2.0.0
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
flask==1.1.2
33
backoff==1.10.0
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
backoff==1.10.0
2-
pytest==6.1.2
2+
pytest==6.2.1
33
flaky==3.7.0
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
backoff==1.10.0
2-
pytest==6.1.2
2+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1

dns/api/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
flaky==3.7.0
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1

eventarc/pubsub/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
pytest-asyncio==0.14.0
33
flaky==3.7.0
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
flaky==3.7.0
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mock==4.0.3
2-
pytest==6.1.2
2+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
flask==1.1.2
22
mock==4.0.3
3-
pytest==6.1.2
3+
pytest==6.2.1
44
requests==2.25.1
55
responses==0.12.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
flask==1.1.2
2-
pytest==6.1.2
2+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mock==4.0.3
2-
pytest==6.1.2
2+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
functions-framework==2.0.0
22
mock==4.0.3
3-
pytest==6.1.2
3+
pytest==6.2.1
44
uuid==1.30

functions/http/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
flask==1.1.2
2-
pytest==6.1.2
2+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mock==4.0.3
2-
pytest==6.1.2
2+
pytest==6.2.1

functions/log/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mock==4.0.3
2-
pytest==6.1.2
2+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mock==4.0.3
2-
pytest==6.1.2
2+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
flask==1.1.2
22
mock==4.0.3
3-
pytest==6.1.2
3+
pytest==6.2.1

functions/slack/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
mock==4.0.3
2-
pytest==6.1.2
2+
pytest==6.2.1
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1

functions/tips/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
flask==1.1.2
2-
pytest==6.1.2
2+
pytest==6.2.1
33
requests==2.25.1
44
responses==0.12.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
retrying==1.3.3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
backoff==1.10.0
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
backoff==1.10.0
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
backoff==1.10.0
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
backoff==1.10.0
2-
pytest==6.1.2
2+
pytest==6.2.1

iam/api-client/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
retrying==1.3.3
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1

iap/requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
flaky==3.7.0
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.1.2
1+
pytest==6.2.1
22
mock==4.0.3

0 commit comments

Comments
 (0)