Skip to content

Commit

Permalink
chore(deps): update dependency pytest to v6.2.1 (#5076)
Browse files Browse the repository at this point in the history
[![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

-   [#&#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).
-   [#&#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

-   [#&#8203;7808](https://togithub.com/pytest-dev/pytest/issues/7808): pytest now supports python3.6+ only.

## Deprecations

-   [#&#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.

-   [#&#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).

-   [#&#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

-   [#&#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.
-   [#&#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.

-   [#&#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}
    @&#8203;pytest.mark.skipif("color == 'blue'", reason="Color is not red")
    def test_func():
        assert False
    ```

-   [#&#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

-   [#&#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.
-   [#&#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".
-   [#&#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.

-   [#&#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.
-   [#&#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>.
-   [#&#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.
-   [#&#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.

-   [#&#8203;7938](https://togithub.com/pytest-dev/pytest/issues/7938): New `--sw-skip` argument which is a shorthand for `--stepwise-skip`.
-   [#&#8203;8023](https://togithub.com/pytest-dev/pytest/issues/8023): Added `'node_modules'` to default value for norecursedirs.
-   [#&#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

-   [#&#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.
-   [#&#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.
-   [#&#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.
-   [#&#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.
-   [#&#8203;7951](https://togithub.com/pytest-dev/pytest/issues/7951): Fixed handling of recursive symlinks when collecting tests.
-   [#&#8203;7981](https://togithub.com/pytest-dev/pytest/issues/7981): Fixed symlinked directories not being followed during collection. Regressed in pytest 6.1.0.
-   [#&#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

-   [#&#8203;7429](https://togithub.com/pytest-dev/pytest/issues/7429): Add more information and use cases about skipping doctests.
-   [#&#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.
-   [#&#8203;7872](https://togithub.com/pytest-dev/pytest/issues/7872): `_pytest.config.argparsing.Parser.addini()` accepts explicit `None` and `"string"`.
-   [#&#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

-   [#&#8203;7802](https://togithub.com/pytest-dev/pytest/issues/7802): The `attrs` dependency requirement is now >=19.2.0 instead of >=17.4.0.
-   [#&#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).
  • Loading branch information
renovate-bot committed Dec 21, 2020
1 parent 01ed44b commit 6197638
Show file tree
Hide file tree
Showing 151 changed files with 151 additions and 151 deletions.
2 changes: 1 addition & 1 deletion appengine/flexible/analytics/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
responses==0.12.1
2 changes: 1 addition & 1 deletion appengine/flexible/cloudsql/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/datastore/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/disk/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/django_cloudsql/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
pytest-django==4.1.0
2 changes: 1 addition & 1 deletion appengine/flexible/extending_runtime/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/hello_world/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/mailgun/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
responses==0.12.1
2 changes: 1 addition & 1 deletion appengine/flexible/mailjet/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
responses==0.12.1
2 changes: 1 addition & 1 deletion appengine/flexible/memcache/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/metadata/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/numpy/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/pubsub/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/redis/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/scipy/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/sendgrid/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3
2 changes: 1 addition & 1 deletion appengine/flexible/static_files/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/storage/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/tasks/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/flexible/twilio/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
responses==0.12.1
2 changes: 1 addition & 1 deletion appengine/flexible/websockets/requirements-test.txt
@@ -1,3 +1,3 @@
pytest==6.1.2
pytest==6.2.1
retrying==1.3.3
websocket-client==0.57.0
2 changes: 1 addition & 1 deletion appengine/standard_python3/bigquery/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/standard_python3/cloudsql/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/standard_python3/django/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
pytest-django==4.1.0
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/standard_python3/pubsub/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/standard_python3/redis/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/standard_python3/spanner/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion appengine/standard_python3/warmup/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion auth/api-client/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3
2 changes: 1 addition & 1 deletion auth/cloud-client/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3
2 changes: 1 addition & 1 deletion auth/end-user/web/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion auth/service-to-service/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion bigquery/bqml/requirements-test.txt
@@ -1,3 +1,3 @@
flaky==3.7.0
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion bigquery/datalab-migration/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion bigquery/pandas-gbq-migration/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
flaky==3.7.0
2 changes: 1 addition & 1 deletion cdn/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion cloud-sql/mysql/sqlalchemy/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion cloud-sql/postgres/sqlalchemy/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion cloud-sql/sql-server/sqlalchemy/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion codelabs/flex_and_vision/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion composer/functions/requirements-test.txt
@@ -1,2 +1,2 @@
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion composer/rest/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion composer/workflows/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion compute/api/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
flaky==3.7.0
2 changes: 1 addition & 1 deletion compute/auth/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3
2 changes: 1 addition & 1 deletion compute/encryption/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion compute/managed-instances/demo/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion compute/metadata/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3
2 changes: 1 addition & 1 deletion compute/oslogin/requirements-test.txt
@@ -1,3 +1,3 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3
retrying==1.3.3
2 changes: 1 addition & 1 deletion compute/xmpp_wikibot/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion data-science-onramp/data-cleaning/requirements-test.txt
@@ -1,4 +1,4 @@
pytest==6.1.2
pytest==6.2.1
pandas==1.1.5
google-cloud-bigquery==2.6.1
pyarrow==2.0.0
2 changes: 1 addition & 1 deletion data-science-onramp/data-ingestion/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion dataflow/encryption-keys/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion dataflow/run_template/requirements-test.txt
@@ -1,3 +1,3 @@
pytest==6.1.2
pytest==6.2.1
flask==1.1.2
backoff==1.10.0
2 changes: 1 addition & 1 deletion datastore/cloud-client/requirements-test.txt
@@ -1,3 +1,3 @@
backoff==1.10.0
pytest==6.1.2
pytest==6.2.1
flaky==3.7.0
2 changes: 1 addition & 1 deletion datastore/cloud-ndb/requirements-test.txt
@@ -1,2 +1,2 @@
backoff==1.10.0
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion datastore/schedule-export/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion dns/api/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
flaky==3.7.0
2 changes: 1 addition & 1 deletion document/cloud-client/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion endpoints/bookstore-grpc-transcoding/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion endpoints/bookstore-grpc/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion endpoints/getting-started-grpc/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion endpoints/getting-started/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion eventarc/audit-storage/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion eventarc/generic/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion eventarc/pubsub/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion firestore/cloud-async-client/requirements-test.txt
@@ -1,3 +1,3 @@
pytest==6.1.2
pytest==6.2.1
pytest-asyncio==0.14.0
flaky==3.7.0
2 changes: 1 addition & 1 deletion firestore/cloud-client/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
flaky==3.7.0
2 changes: 1 addition & 1 deletion functions/bigtable/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/billing/requirements-test.txt
@@ -1,2 +1,2 @@
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/concepts/requirements-test.txt
@@ -1,5 +1,5 @@
flask==1.1.2
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
requests==2.25.1
responses==0.12.1
2 changes: 1 addition & 1 deletion functions/env_vars/requirements-test.txt
@@ -1,2 +1,2 @@
flask==1.1.2
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/firebase/requirements-test.txt
@@ -1,2 +1,2 @@
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/helloworld/requirements-test.txt
@@ -1,4 +1,4 @@
functions-framework==2.0.0
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
uuid==1.30
2 changes: 1 addition & 1 deletion functions/http/requirements-test.txt
@@ -1,2 +1,2 @@
flask==1.1.2
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/imagemagick/requirements-test.txt
@@ -1,2 +1,2 @@
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/log/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/memorystore/redis/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/ocr/app/requirements-test.txt
@@ -1,2 +1,2 @@
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/pubsub/requirements-test.txt
@@ -1,2 +1,2 @@
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/security/requirements-test.txt
@@ -1,3 +1,3 @@
flask==1.1.2
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/slack/requirements-test.txt
@@ -1,2 +1,2 @@
mock==4.0.3
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/spanner/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion functions/tips/requirements-test.txt
@@ -1,4 +1,4 @@
flask==1.1.2
pytest==6.1.2
pytest==6.2.1
requests==2.25.1
responses==0.12.1
2 changes: 1 addition & 1 deletion healthcare/api-client/v1/datasets/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
retrying==1.3.3
2 changes: 1 addition & 1 deletion healthcare/api-client/v1/dicom/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
backoff==1.10.0
2 changes: 1 addition & 1 deletion healthcare/api-client/v1/fhir/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
backoff==1.10.0
2 changes: 1 addition & 1 deletion healthcare/api-client/v1/hl7v2/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
backoff==1.10.0
2 changes: 1 addition & 1 deletion healthcare/api-client/v1beta1/fhir/requirements-test.txt
@@ -1,2 +1,2 @@
backoff==1.10.0
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion iam/api-client/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
retrying==1.3.3
2 changes: 1 addition & 1 deletion iap/app_engine_app/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion iap/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
flaky==3.7.0
2 changes: 1 addition & 1 deletion iot/api-client/codelabs/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion iot/api-client/end_to_end_example/requirements-test.txt
@@ -1 +1 @@
pytest==6.1.2
pytest==6.2.1
2 changes: 1 addition & 1 deletion iot/api-client/gcs_file_to_device/requirements-test.txt
@@ -1,2 +1,2 @@
pytest==6.1.2
pytest==6.2.1
mock==4.0.3

0 comments on commit 6197638

Please sign in to comment.