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

⬆️ Bump the dependencies group with 7 updates #39

Merged
merged 1 commit into from
Jan 7, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the dependencies group with 7 updates:

Package From To
ruff 0.8.5 0.8.6
coverage 7.6.4 7.6.10
identify 2.6.1 2.6.5
psutil 5.9.8 6.1.1
tomli 2.0.2 2.2.1
virtualenv 20.27.1 20.28.1
coverage[toml] 7.6.4 7.6.10

Updates ruff from 0.8.5 to 0.8.6

Release notes

Sourced from ruff's releases.

0.8.6

Release Notes

Preview features

  • [format]: Preserve multiline implicit concatenated strings in docstring positions (#15126)
  • [ruff] Add rule to detect empty literal in deque call (RUF025) (#15104)
  • [ruff] Avoid reporting when ndigits is possibly negative (RUF057) (#15234)

Rule changes

  • [flake8-todos] remove issue code length restriction (TD003) (#15175)
  • [pyflakes] Ignore errors in @no_type_check string annotations (F722, F821) (#15215)

CLI

  • Show errors for attempted fixes only when passed --verbose (#15237)

Bug fixes

  • [ruff] Avoid syntax error when removing int over multiple lines (RUF046) (#15230)
  • [pyupgrade] Revert "Add all PEP-585 names to UP006 rule" (#15250)

Contributors

Install ruff 0.8.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.8.6/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/astral-sh/ruff/releases/download/0.8.6/ruff-installer.ps1 | iex"

... (truncated)

Changelog

Sourced from ruff's changelog.

0.8.6

Preview features

  • [format]: Preserve multiline implicit concatenated strings in docstring positions (#15126)
  • [ruff] Add rule to detect empty literal in deque call (RUF025) (#15104)
  • [ruff] Avoid reporting when ndigits is possibly negative (RUF057) (#15234)

Rule changes

  • [flake8-todos] remove issue code length restriction (TD003) (#15175)
  • [pyflakes] Ignore errors in @no_type_check string annotations (F722, F821) (#15215)

CLI

  • Show errors for attempted fixes only when passed --verbose (#15237)

Bug fixes

  • [ruff] Avoid syntax error when removing int over multiple lines (RUF046) (#15230)
  • [pyupgrade] Revert "Add all PEP-585 names to UP006 rule" (#15250)
Commits

Updates coverage from 7.6.4 to 7.6.10

Changelog

Sourced from coverage's changelog.

Version 7.6.10 — 2024-12-26

  • Fix: some descriptions of missing branches in HTML and LCOV reports were incorrect when multi-line statements were involved (issue 1874_ and issue 1875_). These are now fixed.

  • Fix: Python 3.14 defers evaluation of annotations <pep649_>_ by moving them into separate code objects. That code is rarely executed, so coverage.py would mark them as missing, as reported in issue 1908_. Now they are ignored by coverage automatically.

  • Fixed an obscure and mysterious problem on PyPy 3.10 seemingly involving mocks, imports, and trace functions: issue 1902_. To be honest, I don't understand the problem or the solution, but git bisect helped find it, and now it's fixed.

  • Docs: re-wrote the :ref:subprocess page to put multiprocessing first and to highlight the correct use of :class:multiprocessing.Pool <python:multiprocessing.pool.Pool>.

.. _issue 1874: nedbat/coveragepy#1874 .. _issue 1875: nedbat/coveragepy#1875 .. _issue 1902: nedbat/coveragepy#1902 .. _issue 1908: nedbat/coveragepy#1908 .. _pep649: https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations

.. _changes_7-6-9:

Version 7.6.9 — 2024-12-06

  • Fix: Tomas Uribe fixed <pull 1901_>_ a performance problem in the XML report. Large code bases should produce XML reports much faster now.

.. _pull 1901: nedbat/coveragepy#1901

.. _changes_7-6-8:

Version 7.6.8 — 2024-11-23

  • Fix: the LCOV report code assumed that a branch line that took no branches meant that the entire line was unexecuted. This isn't true in a few cases: the line might always raise an exception, or might have been optimized away. Fixes issue 1896_.

  • Fix: similarly, the HTML report will now explain that a line that jumps to

... (truncated)

Commits
  • f0dcf65 docs: sample HTML for 7.6.10
  • 0f26f35 docs: prep for 7.6.10
  • 81c5e43 docs: rewrite the subprocess page
  • 878410c chore: make doc_upgrade
  • f1d320d chore: make upgrade
  • 67f1440 debug: this condition is never true. really?
  • c85eaba fix: multi-line statements no longer confuse branch target descriptions. #187...
  • 73e58fa refactor: clarify the code that fixes with-statement exits
  • e16c9cc typo: backslask
  • 865fd7f chore: bump the action-dependencies group with 4 updates (#1909)
  • Additional commits viewable in compare view

Updates identify from 2.6.1 to 2.6.5

Commits

Updates psutil from 5.9.8 to 6.1.1

Changelog

Sourced from psutil's changelog.

6.1.1

2024-12-19

Enhancements

  • 2471_: use Vulture CLI tool to detect dead code.

Bug fixes

  • 2418_, [Linux]: fix race condition in case /proc/PID/stat does not exist, but /proc/PID does, resulting in FileNotFoundError.
  • 2470_, [Linux]: users()_ may return "localhost" instead of the actual IP address of the user logged in.

6.1.0

2024-10-17

Enhancements

  • 2366_, [Windows]: drastically speedup process_iter(). We now determine process unique identity by using process "fast" create time method. This will considerably speedup those apps which use process_iter() only once, e.g. to look for a process with a certain name.
  • 2446_: use pytest instead of unittest.
  • 2448_: add make install-sysdeps target to install the necessary system dependencies (python-dev, gcc, etc.) on all supported UNIX flavors.
  • 2449_: add make install-pydeps-test and make install-pydeps-dev targets. They can be used to install dependencies meant for running tests and for local development. They can also be installed via pip install .[test] and pip install .[dev].
  • 2456_: allow to run tests via python3 -m psutil.tests even if pytest module is not installed. This is useful for production environments that don't have pytest installed, but still want to be able to test psutil installation.

Bug fixes

  • 2427_: psutil (segfault) on import in the free-threaded (no GIL) version of Python 3.13. (patch by Sam Gross)
  • 2455_, [Linux]: IndexError may occur when reading /proc/pid/stat and field 40 (blkio_ticks) is missing.
  • 2457_, [AIX]: significantly improve the speed of Process.open_files()_ for some edge cases.
  • 2460_, [OpenBSD]: Process.num_fds()_ and Process.open_files()_ may fail with NoSuchProcess_ for PID 0. Instead, we now return "null" values (0 and [] respectively).

... (truncated)

Commits
  • 58552f6 Merge branch 'master' of github.com:giampaolo/psutil
  • 4ba6ad0 ruff: enable PLR5501 (Use elif instead of else then if, to reduce inden...
  • 1a63407 use a set literal when testing for membership
  • 8162905 disable flafy test + pre-release
  • 1f3458b try to fix some flaky tests 2
  • c0e1eb1 try to fix some flaky tests 2
  • 45934bb try to fix some flaky tests
  • 560c524 chore: bump cibuildwheel to 2.22.0, move to macos-13 (#2479)
  • b5ea67e fix winmake.py test-parallel
  • 13a336b fix #2418 / Linux: fix race condition
  • Additional commits viewable in compare view

Updates tomli from 2.0.2 to 2.2.1

Changelog

Sourced from tomli's changelog.

2.2.1

  • Fixed
    • Don't attempt to compile binary wheels for Python 3.8, 3.9 and 3.10 where cibuildwheel depends on a conflicting Tomli version

2.2.0

  • Added
    • mypyc generated binary wheels for common platforms

2.1.0

  • Deprecated
    • Instantiating TOMLDecodeError with free-form arguments. msg, doc and pos arguments should be given.
  • Added
    • msg, doc, pos, lineno and colno attributes to TOMLDecodeError
Commits
  • 73c3d10 Bump version: 2.2.0 → 2.2.1
  • 7c2368d Don't build wheels for Python versions requiring tomli
  • c48e4e1 Bump version: 2.1.0 → 2.2.0
  • 7604741 Update README
  • 0724e2a Annotate global constants as Final to speed up compiled code
  • 149547d Create binary wheels with mypyc (#242)
  • 443a0c1 pre-commit autoupdate and autofix
  • 48461cf Merge pull request #240 from hukkin/version-2.1.0
  • d6e045b Bump version: 2.0.2 → 2.1.0
  • d1d6a85 Add attributes to TOMLDecodeError. Deprecate free-form __init__ args (#238)
  • Additional commits viewable in compare view

Updates virtualenv from 20.27.1 to 20.28.1

Release notes

Sourced from virtualenv's releases.

20.28.1

What's Changed

Full Changelog: pypa/virtualenv@20.28.0...20.28.1

20.28.0

What's Changed

Full Changelog: pypa/virtualenv@20.27.2...20.28.0

20.27.2

What's Changed

New Contributors

Full Changelog: pypa/virtualenv@20.27.1...20.27.2

Changelog

Sourced from virtualenv's changelog.

v20.28.1 (2025-01-02)

Bugfixes - 20.28.1

- Skip tcsh tests on broken tcsh versions - by :user:`gaborbernat`. (:issue:`2814`)

v20.28.0 (2024-11-25)

Features - 20.28.0

  • Write CACHEDIR.TAG file on creation - by "user:neilramsay. (:issue:2803)

v20.27.2 (2024-11-25)

Bugfixes - 20.27.2

- Upgrade embedded wheels:
  • setuptools to 75.3.0 from 75.2.0 (:issue:2798)
  • Upgrade embedded wheels:

    • wheel to 0.45.0 from 0.44.0
    • setuptools to 75.5.0 (:issue:2800)
  • no longer forcibly echo off during windows batch activation (:issue:2801)

  • Upgrade embedded wheels:

    • setuptools to 75.6.0 from 75.5.0
    • wheel to 0.45.1 from 0.45.0 (:issue:2804)
Commits

Updates coverage[toml] from 7.6.4 to 7.6.10

Release notes

Sourced from coverage[toml]'s releases.

7.6.10

Version 7.6.10 — 2024-12-26

➡️  PyPI page: coverage 7.6.10. :arrow_right:  To install: python3 -m pip install coverage==7.6.10

7.6.9

Version 7.6.9 — 2024-12-06

  • Fix: Tomas Uribe fixed a performance problem in the XML report. Large code bases should produce XML reports much faster now.

➡️  PyPI page: coverage 7.6.9. :arrow_right:  To install: python3 -m pip install coverage==7.6.9

7.6.8

Version 7.6.8 — 2024-11-23

  • Fix: the LCOV report code assumed that a branch line that took no branches meant that the entire line was unexecuted. This isn’t true in a few cases: the line might always raise an exception, or might have been optimized away. Fixes issue 1896.
  • Fix: similarly, the HTML report will now explain that a line that jumps to none of its expected destinations must have always raised an exception. Previously, it would say something nonsensical like, “line 4 didn’t jump to line 5 because line 4 was never true, and it didn’t jump to line 7 because line 4 was always true.” This was also shown in issue 1896.

➡️  PyPI page: coverage 7.6.8. :arrow_right:  To install: python3 -m pip install coverage==7.6.8

7.6.7

Version 7.6.7 — 2024-11-15

  • Fix: ugh, the other assert from 7.6.5 can also be encountered in the wild, so it’s been restored to a conditional. Sorry for the churn.

➡️  PyPI page: coverage 7.6.7. :arrow_right:  To install: python3 -m pip install coverage==7.6.7

7.6.6

Version 7.6.6 — 2024-11-15

  • One of the new asserts from 7.6.5 caused problems in real projects, as reported in issue 1891. The assert has been removed.

➡️  PyPI page: coverage 7.6.6. :arrow_right:  To install: python3 -m pip install coverage==7.6.6

7.6.5

Version 7.6.5 — 2024-11-14

  • Fix: fine-tuned the exact Python version (3.12.6) when exiting from with statements changed how they traced. This affected whether people saw the fix for issue 1880.
  • Fix: isolate our code more from mocking in the os module that in rare cases can cause bizarre behavior.
  • Refactor: some code unreachable code paths in parser.py were changed to asserts. If you encounter any of these, please let me know!

... (truncated)

Changelog

Sourced from coverage[toml]'s changelog.

Version 7.6.10 — 2024-12-26

  • Fix: some descriptions of missing branches in HTML and LCOV reports were incorrect when multi-line statements were involved (issue 1874_ and issue 1875_). These are now fixed.

  • Fix: Python 3.14 defers evaluation of annotations <pep649_>_ by moving them into separate code objects. That code is rarely executed, so coverage.py would mark them as missing, as reported in issue 1908_. Now they are ignored by coverage automatically.

  • Fixed an obscure and mysterious problem on PyPy 3.10 seemingly involving mocks, imports, and trace functions: issue 1902_. To be honest, I don't understand the problem or the solution, but git bisect helped find it, and now it's fixed.

  • Docs: re-wrote the :ref:subprocess page to put multiprocessing first and to highlight the correct use of :class:multiprocessing.Pool <python:multiprocessing.pool.Pool>.

.. _issue 1874: nedbat/coveragepy#1874 .. _issue 1875: nedbat/coveragepy#1875 .. _issue 1902: nedbat/coveragepy#1902 .. _issue 1908: nedbat/coveragepy#1908 .. _pep649: https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations

.. _changes_7-6-9:

Version 7.6.9 — 2024-12-06

  • Fix: Tomas Uribe fixed <pull 1901_>_ a performance problem in the XML report. Large code bases should produce XML reports much faster now.

.. _pull 1901: nedbat/coveragepy#1901

.. _changes_7-6-8:

Version 7.6.8 — 2024-11-23

  • Fix: the LCOV report code assumed that a branch line that took no branches meant that the entire line was unexecuted. This isn't true in a few cases: the line might always raise an exception, or might have been optimized away. Fixes issue 1896_.

  • Fix: similarly, the HTML report will now explain that a line that jumps to

... (truncated)

Commits
  • f0dcf65 docs: sample HTML for 7.6.10
  • 0f26f35 docs: prep for 7.6.10
  • 81c5e43 docs: rewrite the subprocess page
  • 878410c chore: make doc_upgrade
  • f1d320d chore: make upgrade
  • 67f1440 debug: this condition is never true. really?
  • c85eaba fix: multi-line statements no longer confuse branch target descriptions. #187...
  • 73e58fa refactor: clarify the code that fixes with-statement exits
  • e16c9cc typo: backslask
  • 865fd7f chore: bump the action-dependencies group with 4 updates (#1909)
  • 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

Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [ruff](https://github.com/astral-sh/ruff) | `0.8.5` | `0.8.6` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.4` | `7.6.10` |
| [identify](https://github.com/pre-commit/identify) | `2.6.1` | `2.6.5` |
| [psutil](https://github.com/giampaolo/psutil) | `5.9.8` | `6.1.1` |
| [tomli](https://github.com/hukkin/tomli) | `2.0.2` | `2.2.1` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.27.1` | `20.28.1` |
| [coverage[toml]](https://github.com/nedbat/coveragepy) | `7.6.4` | `7.6.10` |


Updates `ruff` from 0.8.5 to 0.8.6
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.8.5...0.8.6)

Updates `coverage` from 7.6.4 to 7.6.10
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.4...7.6.10)

Updates `identify` from 2.6.1 to 2.6.5
- [Commits](pre-commit/identify@v2.6.1...v2.6.5)

Updates `psutil` from 5.9.8 to 6.1.1
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-5.9.8...release-6.1.1)

Updates `tomli` from 2.0.2 to 2.2.1
- [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md)
- [Commits](hukkin/tomli@2.0.2...2.2.1)

Updates `virtualenv` from 20.27.1 to 20.28.1
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.27.1...20.28.1)

Updates `coverage[toml]` from 7.6.4 to 7.6.10
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.4...7.6.10)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: identify
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: psutil
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tomli
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: virtualenv
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: coverage[toml]
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 6, 2025
Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (ubuntu-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.094s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (ubuntu-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.151s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (macos-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: macos-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.064s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (macos-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: macos-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.097s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (ubuntu-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.099s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (macos-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: macos-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.063s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (ubuntu-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: ubuntu-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.125s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (macos-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: macos-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.075s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (windows-latest / Python 3.11)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: windows-latest / python-version: 3.11)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.235s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (windows-latest / Python 3.10)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: windows-latest / python-version: 3.10)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.344s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (windows-latest / Python 3.13)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: windows-latest / python-version: 3.13)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.134s ⏱️

Copy link

github-actions bot commented Jan 6, 2025

coverage

Coverage Report (windows-latest / Python 3.12)
FileStmtsMissCoverMissing
__init__.py00100% 
src/dispatch
   send_payload.py230100% 
TOTAL230100% 

Pytest Result Summary (os: windows-latest / python-version: 3.12)

Tests Skipped Failures Errors Time
11 0 💤 0 ❌ 0 🔥 0.376s ⏱️

@7rikazhexde 7rikazhexde merged commit e93373b into main Jan 7, 2025
19 checks passed
@dependabot dependabot bot deleted the dependabot/pip/dependencies-95303b1837 branch January 7, 2025 09:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant