Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pytest-httpx requirement from ~=0.30.0 to ~=0.31.2 in the dependencies group across 1 directory #522

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 24, 2024

Updates the requirements on pytest-httpx to permit the latest version.
Updates pytest-httpx to 0.31.2

Release notes

Sourced from pytest-httpx's releases.

0.31.2 (2024-09-23)

Fixed

  • httpx_mock marker can now be defined at different levels for a single test.
Changelog

Sourced from pytest-httpx's changelog.

[0.31.2] - 2024-09-23

Fixed

  • httpx_mock marker can now be defined at different levels for a single test.

[0.31.1] - 2024-09-22

Fixed

  • It is now possible to match on content provided as async iterable by the client.

[0.31.0] - 2024-09-20

Changed

  • Tests will now fail at teardown by default if some requests were issued but were not matched.
    • This behavior can be changed thanks to the new pytest.mark.httpx_mock(assert_all_requests_were_expected=False) option.
  • The httpx_mock fixture is now configured using a marker (many thanks to Frazer McLean).
    # Apply marker to whole module
    pytestmark = pytest.mark.httpx_mock(assert_all_responses_were_requested=False)
    Or to specific tests
    @​pytest.mark.httpx_mock(non_mocked_hosts=[...])
    def test_foo(httpx_mock):
    ...

    • The following options are available:
      • assert_all_responses_were_requested (boolean), defaulting to True.
      • assert_all_requests_were_expected (boolean), defaulting to True.
      • non_mocked_hosts (iterable), defaulting to an empty list, meaning all hosts are mocked.
  • httpx_mock.reset do not expect any parameter anymore and will only reset the mock state (no assertions will be performed).

Removed

  • pytest 7 is not supported anymore (pytest 8 has been out for 9 months already).
  • assert_all_responses_were_requested fixture is not available anymore, use pytest.mark.httpx_mock(assert_all_responses_were_requested=False) instead.
  • non_mocked_hosts fixture is not available anymore, use pytest.mark.httpx_mock(non_mocked_hosts=[]) instead.

[0.30.0] - 2024-02-21

Changed

Fixed

  • Switch from setup.py to pyproject.toml (many thanks to Felix Scherz).

[0.29.0] - 2024-01-29

Added

[0.28.0] - 2023-12-21

Changed

[0.27.0] - 2023-11-13

Added

... (truncated)

Commits
  • 0cbba7c Merge pull request #157 from Colin-b/develop
  • 97da972 Add a dedicated configuration section
  • 419e49e Allow to use the mark at different levels
  • 549622b Explain how to use the mark on the whole test suite
  • 75c308e Merge pull request #153 from Colin-b/develop
  • ca067b4 Merge branch 'master' into develop
  • d906a89 Merge pull request #152 from Colin-b/bugfix/iter_content
  • 6eddd05 Remove dead code
  • 29eb9c3 Bump version
  • cb820a2 Allow to match on client provided async iterable content
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Updates the requirements on [pytest-httpx](https://github.com/Colin-b/pytest_httpx) to permit the latest version.

Updates `pytest-httpx` to 0.31.2
- [Release notes](https://github.com/Colin-b/pytest_httpx/releases)
- [Changelog](https://github.com/Colin-b/pytest_httpx/blob/develop/CHANGELOG.md)
- [Commits](Colin-b/pytest_httpx@v0.30.0...v0.31.2)

---
updated-dependencies:
- dependency-name: pytest-httpx
  dependency-type: direct:production
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from CasperWA as a code owner September 24, 2024 08:46
@dependabot dependabot bot added CI/CD Continuous Integration / Continuous Deployment dependencies Pull requests that update a dependency file skip-changelog Skip this issue/PR in the CHANGLOG.md labels Sep 24, 2024
@CasperWA CasperWA enabled auto-merge (squash) September 24, 2024 08:47
Copy link

codecov bot commented Sep 24, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 88.16%. Comparing base (b4c0492) to head (dd76306).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #522   +/-   ##
=======================================
  Coverage   88.16%   88.16%           
=======================================
  Files          39       39           
  Lines        1242     1242           
=======================================
  Hits         1095     1095           
  Misses        147      147           
Flag Coverage Δ
mongodb ?
mongomock 88.16% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2024

Superseded by #523.

@dependabot dependabot bot closed this Sep 30, 2024
auto-merge was automatically disabled September 30, 2024 03:01

Pull request was closed

@dependabot dependabot bot deleted the dependabot/pip/main/dependencies-617ddcd429 branch September 30, 2024 03:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI/CD Continuous Integration / Continuous Deployment dependencies Pull requests that update a dependency file skip-changelog Skip this issue/PR in the CHANGLOG.md
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants