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

tox3 30s delay caused by DNSServiceCreateConnection on macos #2375

Closed
ssbarnea opened this issue Mar 10, 2022 · 3 comments · Fixed by #2380
Closed

tox3 30s delay caused by DNSServiceCreateConnection on macos #2375

ssbarnea opened this issue Mar 10, 2022 · 3 comments · Fixed by #2380
Labels
bug:normal affects many people or has quite an impact

Comments

@ssbarnea
Copy link
Member

ssbarnea commented Mar 10, 2022

More than an year after #1735 was closed and locked, I was able to find what was causing it.

It happens on MacOS only when tox.ini file was modified, so if you run it again, it will not be affected by that undesired 30s delay, which is extremely annoying as it applies even for tox -l commands.

Here is the culprit from MacOS Console:

default	08:08:07.717039+0000	mDNSResponder	[R1351382] DNSServiceCreateConnection START PID[53961](python3.10)
default	08:08:07.717132+0000	mDNSResponder	[R1351383] DNSServiceQueryRecord(1D000, 0, <mask.hash: 'W4U2JyNMP4qPLaREUfA9Aw=='>, Addr) START PID[53961](python3.10)
default	08:08:07.717885+0000	mDNSResponder	[R1351384] DNSServiceQueryRecord(1D000, 0, <mask.hash: 'W4U2JyNMP4qPLaREUfA9Aw=='>, AAAA) START PID[53961](python3.10)
default	08:08:07.718398+0000	mDNSResponder	[R1351383] DNSServiceQueryRecord(1D000, 0, <mask.hash: 'AxiCO2kN2tb6f+xUNi2KVQ=='>, Addr) STOP PID[53961](python3.10)
default	08:08:07.718460+0000	mDNSResponder	[R1351384] DNSServiceQueryRecord(1D000, 0, <mask.hash: 'AxiCO2kN2tb6f+xUNi2KVQ=='>, AAAA) STOP PID[53961](python3.10)
default	08:08:07.719293+0000	mDNSResponder	[R1351385] DNSServiceQueryRecord(15000, 0, <mask.hash: 'BbGOo0pN8UoXPv6jtlO7tg=='>, PTR) START PID[53961](python3.10)
default	08:08:37.720264+0000	mDNSResponder	[R1351385] DNSServiceQueryRecord(15000, 0, <mask.hash: 'lubOf0RtXl5C9ERWs7ZGfQ=='>, PTR) STOP PID[53961](python3.10)
default	08:08:37.745626+0000	mDNSResponder	[R1351382] DNSServiceCreateConnection STOP PID[53961](python3.10)

I am not sure what is causing it. I should mention that I do have a full dual IPv4 and IPv6 connectivity on that machine, something that is still not very common. You current stack status can easily be verified with a site like https://ipv6-test.com/

Reference: https://bugs.python.org/issue35164

@ssbarnea ssbarnea added the bug:normal affects many people or has quite an impact label Mar 10, 2022
@ssbarnea
Copy link
Member Author

ssbarnea commented Mar 10, 2022

After bit more debugging, I was able to find a way to enable the logging of the effective dns queries and I found the culprit, the attempt to do the reverse hostname check.

It is even visible on my example, the DNS query that takes 30s is the PTR one. The other 2 queries are resolving current hostname to IPv4 and IPv6, which works instantly.

Why tox really needs to do this and why it seems to be doing it when tox.ini is touched are two other interesting questions.

Still, I am able to confirm that the Python call that causes this is socket.getfqdn():

$ time python -c "import socket; socket.getfqdn()"
python -c "import socket; socket.getfqdn()"  0.05s user 0.04s system 0% cpu 31.168 total

I do suspect that this comes from

"host": os.getenv(str("HOSTNAME")) or socket.getfqdn(),
as the other two places are inside tests.

Interestingly I could define HOSTNAME env var to bypass the issue locally which is very useful info to have and I can confirm that the workaround seems to be working.

Do we really need that getfqdn() call in tox?

@ssbarnea
Copy link
Member Author

@gaborbernat Considering that the Python bugs was not fixed in 4 years and I doubt it will, how are you feeling about replacing the socket.getfqdn() with socket.gethostname() which is not affected by that problem?

As the bug is specific to macos, we could add wrapper function and make it use full one for non macos and return short/fast one on macos.

ssbarnea added a commit to ssbarnea/.dotfiles that referenced this issue Mar 16, 2022
ssbarnea added a commit to ssbarnea/.dotfiles that referenced this issue Mar 16, 2022
@gaborbernat
Copy link
Member

@gaborbernat Considering that the Python bugs was not fixed in 4 years and I doubt it will, how are you feeling about replacing the socket.getfqdn() with socket.gethostname() which is not affected by that problem?

Sounds good 👍

ssbarnea added a commit to ssbarnea/tox that referenced this issue Mar 18, 2022
This avoid bug that is adding 30s on some machines where getfqdn()
is very slow, as this is caused by an unsolved python bug.

Related: https://bugs.python.org/issue35164
Fixes: tox-dev#2375
ssbarnea added a commit to ssbarnea/tox that referenced this issue Mar 18, 2022
This avoid bug that is adding 30s on some machines where getfqdn()
is very slow, as this is caused by an unsolved python bug.

Related: https://bugs.python.org/issue35164
Fixes: tox-dev#2375
mergify bot pushed a commit to andrewbolster/bolster that referenced this issue Apr 11, 2022
Bumps [tox](https://github.com/tox-dev/tox) from 3.24.5 to 3.25.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.25.0 (2022-04-11)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed failing isolated_build because setuptools warning was captured
in <code>build_requires</code>. -- by :user:<code>zariiii9003</code>
<code>[#2332](tox-dev/tox#2332) &lt;https://github.com/tox-dev/tox/issues/2332&gt;</code>_</li>
<li>Avoid potential 30s delay caused by socket.getfqdn(). -- by :user:<code>ssbarnea</code>
<code>[#2375](tox-dev/tox#2375) &lt;https://github.com/tox-dev/tox/issues/2375&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<ul>
<li>Ignore missing commands if they are prefixed by <code>-</code>
-- by :user:<code>cdown</code>.
<code>[#2315](tox-dev/tox#2315) &lt;https://github.com/tox-dev/tox/issues/2315&gt;</code>_</li>
<li>Add default environment variables (such as http_proxy) regardless of their case to passenv on UNIX -- by :user:<code>poggenhans</code>.
<code>[#2372](tox-dev/tox#2372) &lt;https://github.com/tox-dev/tox/issues/2372&gt;</code>_</li>
<li>On Windows <code>PROGRAMFILES</code>, <code>PROGRAMFILES(X86)</code>, and <code>PROGRAMDATA</code> environment variables are now passed through, unmasking system values necessary to locate resources such as a C compiler.
<code>[#2382](tox-dev/tox#2382) &lt;https://github.com/tox-dev/tox/issues/2382&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Deleted the tox mailing list -- by :user:<code>jugmac00</code>
<code>[#2364](tox-dev/tox#2364) &lt;https://github.com/tox-dev/tox/issues/2364&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/cd33742da5ff3e4e2153d6df48c6e23ed5744bdc"><code>cd33742</code></a> release 3.25.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/cafb36143449d19e93811d539565e6fcfc2cc13e"><code>cafb361</code></a> doc: fix typo in description of tox-conda plugin (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2363">#2363</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/c32b828b798c04ca7ac42c8a39ec93955a09e0f7"><code>c32b828</code></a> [pre-commit.ci] pre-commit autoupdate</li>
<li><a href="https://github.com/tox-dev/tox/commit/00a969595d66c214467afc77cae26c6334f1ddbf"><code>00a9695</code></a> Add PROGRAM environment variables on Windows (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2383">#2383</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/eb1bd33d152f11f521805fe17e2240fb768e05d9"><code>eb1bd33</code></a> Use gethostname instead of potentially slow getfqdn (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2380">#2380</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/91bbd7f0d5f31843679a26ff0738806149f07182"><code>91bbd7f</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2343">#2343</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/31dc5b1e1046c0166a9739784ab83e7b843b42fe"><code>31dc5b1</code></a> Passenv: Include default env variables regardless of their case on UNIX (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2378">#2378</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/465cb9817cadea74dbddc7667c008dc784318c8a"><code>465cb98</code></a> [pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a href="https://github.com/tox-dev/tox/commit/587e625d880cf5280625c2e38916aa56866292c7"><code>587e625</code></a> Delete <code>tox</code> mailing list</li>
<li><a href="https://github.com/tox-dev/tox/commit/a03c51884d63f5e9e08bdb7083cda29061fda098"><code>a03c518</code></a> Fix the CI</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.5...3.25.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tox&package-manager=pip&previous-version=3.24.5&new-version=3.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
bors bot added a commit to meilisearch/meilisearch-python that referenced this issue Apr 22, 2022
441: Bump tox from 3.24.5 to 3.25.0 r=alallema a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.5 to 3.25.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.25.0 (2022-04-11)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed failing isolated_build because setuptools warning was captured
in <code>build_requires</code>. -- by :user:<code>zariiii9003</code>
<code>[#2332](tox-dev/tox#2332) &lt;https://github.com/tox-dev/tox/issues/2332&gt;</code>_</li>
<li>Avoid potential 30s delay caused by socket.getfqdn(). -- by :user:<code>ssbarnea</code>
<code>[#2375](tox-dev/tox#2375) &lt;https://github.com/tox-dev/tox/issues/2375&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<ul>
<li>Ignore missing commands if they are prefixed by <code>-</code>
-- by :user:<code>cdown</code>.
<code>[#2315](tox-dev/tox#2315) &lt;https://github.com/tox-dev/tox/issues/2315&gt;</code>_</li>
<li>Add default environment variables (such as http_proxy) regardless of their case to passenv on UNIX -- by :user:<code>poggenhans</code>.
<code>[#2372](tox-dev/tox#2372) &lt;https://github.com/tox-dev/tox/issues/2372&gt;</code>_</li>
<li>On Windows <code>PROGRAMFILES</code>, <code>PROGRAMFILES(X86)</code>, and <code>PROGRAMDATA</code> environment variables are now passed through, unmasking system values necessary to locate resources such as a C compiler.
<code>[#2382](tox-dev/tox#2382) &lt;https://github.com/tox-dev/tox/issues/2382&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Deleted the tox mailing list -- by :user:<code>jugmac00</code>
<code>[#2364](tox-dev/tox#2364) &lt;https://github.com/tox-dev/tox/issues/2364&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/cd33742da5ff3e4e2153d6df48c6e23ed5744bdc"><code>cd33742</code></a> release 3.25.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/cafb36143449d19e93811d539565e6fcfc2cc13e"><code>cafb361</code></a> doc: fix typo in description of tox-conda plugin (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2363">#2363</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/c32b828b798c04ca7ac42c8a39ec93955a09e0f7"><code>c32b828</code></a> [pre-commit.ci] pre-commit autoupdate</li>
<li><a href="https://github.com/tox-dev/tox/commit/00a969595d66c214467afc77cae26c6334f1ddbf"><code>00a9695</code></a> Add PROGRAM environment variables on Windows (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2383">#2383</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/eb1bd33d152f11f521805fe17e2240fb768e05d9"><code>eb1bd33</code></a> Use gethostname instead of potentially slow getfqdn (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2380">#2380</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/91bbd7f0d5f31843679a26ff0738806149f07182"><code>91bbd7f</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2343">#2343</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/31dc5b1e1046c0166a9739784ab83e7b843b42fe"><code>31dc5b1</code></a> Passenv: Include default env variables regardless of their case on UNIX (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2378">#2378</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/465cb9817cadea74dbddc7667c008dc784318c8a"><code>465cb98</code></a> [pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a href="https://github.com/tox-dev/tox/commit/587e625d880cf5280625c2e38916aa56866292c7"><code>587e625</code></a> Delete <code>tox</code> mailing list</li>
<li><a href="https://github.com/tox-dev/tox/commit/a03c51884d63f5e9e08bdb7083cda29061fda098"><code>a03c518</code></a> Fix the CI</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.5...3.25.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tox&package-manager=pip&previous-version=3.24.5&new-version=3.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Amélie <alallema@users.noreply.github.com>
meili-bors bot added a commit to meilisearch/docs-scraper that referenced this issue May 16, 2022
210: Bump tox from 3.24.5 to 3.25.0 r=bidoubiwa a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.5 to 3.25.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.25.0 (2022-04-11)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed failing isolated_build because setuptools warning was captured
in <code>build_requires</code>. -- by :user:<code>zariiii9003</code>
<code>[#2332](tox-dev/tox#2332) &lt;https://github.com/tox-dev/tox/issues/2332&gt;</code>_</li>
<li>Avoid potential 30s delay caused by socket.getfqdn(). -- by :user:<code>ssbarnea</code>
<code>[#2375](tox-dev/tox#2375) &lt;https://github.com/tox-dev/tox/issues/2375&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<ul>
<li>Ignore missing commands if they are prefixed by <code>-</code>
-- by :user:<code>cdown</code>.
<code>[#2315](tox-dev/tox#2315) &lt;https://github.com/tox-dev/tox/issues/2315&gt;</code>_</li>
<li>Add default environment variables (such as http_proxy) regardless of their case to passenv on UNIX -- by :user:<code>poggenhans</code>.
<code>[#2372](tox-dev/tox#2372) &lt;https://github.com/tox-dev/tox/issues/2372&gt;</code>_</li>
<li>On Windows <code>PROGRAMFILES</code>, <code>PROGRAMFILES(X86)</code>, and <code>PROGRAMDATA</code> environment variables are now passed through, unmasking system values necessary to locate resources such as a C compiler.
<code>[#2382](tox-dev/tox#2382) &lt;https://github.com/tox-dev/tox/issues/2382&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Deleted the tox mailing list -- by :user:<code>jugmac00</code>
<code>[#2364](tox-dev/tox#2364) &lt;https://github.com/tox-dev/tox/issues/2364&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/cd33742da5ff3e4e2153d6df48c6e23ed5744bdc"><code>cd33742</code></a> release 3.25.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/cafb36143449d19e93811d539565e6fcfc2cc13e"><code>cafb361</code></a> doc: fix typo in description of tox-conda plugin (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2363">#2363</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/c32b828b798c04ca7ac42c8a39ec93955a09e0f7"><code>c32b828</code></a> [pre-commit.ci] pre-commit autoupdate</li>
<li><a href="https://github.com/tox-dev/tox/commit/00a969595d66c214467afc77cae26c6334f1ddbf"><code>00a9695</code></a> Add PROGRAM environment variables on Windows (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2383">#2383</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/eb1bd33d152f11f521805fe17e2240fb768e05d9"><code>eb1bd33</code></a> Use gethostname instead of potentially slow getfqdn (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2380">#2380</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/91bbd7f0d5f31843679a26ff0738806149f07182"><code>91bbd7f</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2343">#2343</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/31dc5b1e1046c0166a9739784ab83e7b843b42fe"><code>31dc5b1</code></a> Passenv: Include default env variables regardless of their case on UNIX (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2378">#2378</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/465cb9817cadea74dbddc7667c008dc784318c8a"><code>465cb98</code></a> [pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a href="https://github.com/tox-dev/tox/commit/587e625d880cf5280625c2e38916aa56866292c7"><code>587e625</code></a> Delete <code>tox</code> mailing list</li>
<li><a href="https://github.com/tox-dev/tox/commit/a03c51884d63f5e9e08bdb7083cda29061fda098"><code>a03c518</code></a> Fix the CI</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.5...3.25.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tox&package-manager=pip&previous-version=3.24.5&new-version=3.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
meili-bors bot added a commit to meilisearch/docs-scraper that referenced this issue May 16, 2022
210: Bump tox from 3.24.5 to 3.25.0 r=bidoubiwa a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.5 to 3.25.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.25.0 (2022-04-11)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed failing isolated_build because setuptools warning was captured
in <code>build_requires</code>. -- by :user:<code>zariiii9003</code>
<code>[#2332](tox-dev/tox#2332) &lt;https://github.com/tox-dev/tox/issues/2332&gt;</code>_</li>
<li>Avoid potential 30s delay caused by socket.getfqdn(). -- by :user:<code>ssbarnea</code>
<code>[#2375](tox-dev/tox#2375) &lt;https://github.com/tox-dev/tox/issues/2375&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<ul>
<li>Ignore missing commands if they are prefixed by <code>-</code>
-- by :user:<code>cdown</code>.
<code>[#2315](tox-dev/tox#2315) &lt;https://github.com/tox-dev/tox/issues/2315&gt;</code>_</li>
<li>Add default environment variables (such as http_proxy) regardless of their case to passenv on UNIX -- by :user:<code>poggenhans</code>.
<code>[#2372](tox-dev/tox#2372) &lt;https://github.com/tox-dev/tox/issues/2372&gt;</code>_</li>
<li>On Windows <code>PROGRAMFILES</code>, <code>PROGRAMFILES(X86)</code>, and <code>PROGRAMDATA</code> environment variables are now passed through, unmasking system values necessary to locate resources such as a C compiler.
<code>[#2382](tox-dev/tox#2382) &lt;https://github.com/tox-dev/tox/issues/2382&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Deleted the tox mailing list -- by :user:<code>jugmac00</code>
<code>[#2364](tox-dev/tox#2364) &lt;https://github.com/tox-dev/tox/issues/2364&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/cd33742da5ff3e4e2153d6df48c6e23ed5744bdc"><code>cd33742</code></a> release 3.25.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/cafb36143449d19e93811d539565e6fcfc2cc13e"><code>cafb361</code></a> doc: fix typo in description of tox-conda plugin (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2363">#2363</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/c32b828b798c04ca7ac42c8a39ec93955a09e0f7"><code>c32b828</code></a> [pre-commit.ci] pre-commit autoupdate</li>
<li><a href="https://github.com/tox-dev/tox/commit/00a969595d66c214467afc77cae26c6334f1ddbf"><code>00a9695</code></a> Add PROGRAM environment variables on Windows (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2383">#2383</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/eb1bd33d152f11f521805fe17e2240fb768e05d9"><code>eb1bd33</code></a> Use gethostname instead of potentially slow getfqdn (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2380">#2380</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/91bbd7f0d5f31843679a26ff0738806149f07182"><code>91bbd7f</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2343">#2343</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/31dc5b1e1046c0166a9739784ab83e7b843b42fe"><code>31dc5b1</code></a> Passenv: Include default env variables regardless of their case on UNIX (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2378">#2378</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/465cb9817cadea74dbddc7667c008dc784318c8a"><code>465cb98</code></a> [pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a href="https://github.com/tox-dev/tox/commit/587e625d880cf5280625c2e38916aa56866292c7"><code>587e625</code></a> Delete <code>tox</code> mailing list</li>
<li><a href="https://github.com/tox-dev/tox/commit/a03c51884d63f5e9e08bdb7083cda29061fda098"><code>a03c518</code></a> Fix the CI</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.5...3.25.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tox&package-manager=pip&previous-version=3.24.5&new-version=3.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
probot-auto-merge bot pushed a commit to mmdbalkhi/IRPI-API that referenced this issue Jun 30, 2022
Bumps [tox](https://github.com/tox-dev/tox) from 3.24.5 to 3.25.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/releases">tox's releases</a>.</em></p>
<blockquote>
<h2>3.25.1</h2>
<h2>What's Changed</h2>
<ul>
<li>release 3.25.0 by <a href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2398">tox-dev/tox#2398</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2399">tox-dev/tox#2399</a></li>
<li>Adding APPDATA as default passenv on Windows by <a href="https://github.com/niander"><code>@​niander</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2404">tox-dev/tox#2404</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2415">tox-dev/tox#2415</a></li>
<li>Avoid importing pipes on Python 3.3+ by <a href="https://github.com/adamchainz"><code>@​adamchainz</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2418">tox-dev/tox#2418</a></li>
<li>Fix link to download stats by <a href="https://github.com/jugmac00"><code>@​jugmac00</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2424">tox-dev/tox#2424</a></li>
<li>[pre-commit.ci] pre-commit autoupdate by <a href="https://github.com/pre-commit-ci"><code>@​pre-commit-ci</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2441">tox-dev/tox#2441</a></li>
<li>Bump actions/setup-python from 2 to 4 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2446">tox-dev/tox#2446</a></li>
<li>Bump actions/download-artifact from 2 to 3 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2444">tox-dev/tox#2444</a></li>
<li>Bump actions/upload-artifact from 2 to 3 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2443">tox-dev/tox#2443</a></li>
<li>Bump actions/checkout from 2 to 3 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2445">tox-dev/tox#2445</a></li>
<li>Improve advice on constraints files by <a href="https://github.com/apljungquist"><code>@​apljungquist</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2423">tox-dev/tox#2423</a></li>
<li>fix isolated builds when stderr is buffered and appears after print() by <a href="https://github.com/asottile"><code>@​asottile</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2449">tox-dev/tox#2449</a></li>
<li>Unify badges style by <a href="https://github.com/DeadNews"><code>@​DeadNews</code></a> in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2448">tox-dev/tox#2448</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/niander"><code>@​niander</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2404">tox-dev/tox#2404</a></li>
<li><a href="https://github.com/dependabot"><code>@​dependabot</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2446">tox-dev/tox#2446</a></li>
<li><a href="https://github.com/apljungquist"><code>@​apljungquist</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2423">tox-dev/tox#2423</a></li>
<li><a href="https://github.com/DeadNews"><code>@​DeadNews</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/tox-dev/tox/pull/2448">tox-dev/tox#2448</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/tox-dev/tox/compare/3.25.0...3.25.1">https://github.com/tox-dev/tox/compare/3.25.0...3.25.1</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.25.1 (2022-06-29)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li><code>sitepackages = true</code> will add user's site-package to the python path on Windows as expected -- by :user:<code>niander</code>
<code>[#2402](tox-dev/tox#2402) &lt;https://github.com/tox-dev/tox/issues/2402&gt;</code>_</li>
<li>Avoid importing <code>pipes</code> on Python 3.3+ to avoid <code>DeprecationWarning</code> on Python 3.11 -- by :user:<code>adamchainz</code>
<code>[#2417](tox-dev/tox#2417) &lt;https://github.com/tox-dev/tox/issues/2417&gt;</code>_</li>
<li>Fix <code>isolated_build</code> when the build process produces stderr at exit.
<code>[#2449](tox-dev/tox#2449) &lt;https://github.com/tox-dev/tox/issues/2449&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Explain advantages of <code>PIP_CONSTRAINT</code> environment variable over <code>--constraint</code> argument.
<code>[#2423](tox-dev/tox#2423) &lt;https://github.com/tox-dev/tox/issues/2423&gt;</code>_</li>
</ul>
<h2>v3.25.0 (2022-04-11)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed failing isolated_build because setuptools warning was captured
in <code>build_requires</code>. -- by :user:<code>zariiii9003</code>
<code>[#2332](tox-dev/tox#2332) &lt;https://github.com/tox-dev/tox/issues/2332&gt;</code>_</li>
<li>Avoid potential 30s delay caused by socket.getfqdn(). -- by :user:<code>ssbarnea</code>
<code>[#2375](tox-dev/tox#2375) &lt;https://github.com/tox-dev/tox/issues/2375&gt;</code>_</li>
</ul>
<p>Features
^^^^^^^^</p>
<ul>
<li>Ignore missing commands if they are prefixed by <code>-</code>
-- by :user:<code>cdown</code>.
<code>[#2315](tox-dev/tox#2315) &lt;https://github.com/tox-dev/tox/issues/2315&gt;</code>_</li>
<li>Add default environment variables (such as http_proxy) regardless of their case to passenv on UNIX -- by :user:<code>poggenhans</code>.
<code>[#2372](tox-dev/tox#2372) &lt;https://github.com/tox-dev/tox/issues/2372&gt;</code>_</li>
<li>On Windows <code>PROGRAMFILES</code>, <code>PROGRAMFILES(X86)</code>, and <code>PROGRAMDATA</code> environment variables are now passed through, unmasking system values necessary to locate resources such as a C compiler.
<code>[#2382](tox-dev/tox#2382) &lt;https://github.com/tox-dev/tox/issues/2382&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Deleted the tox mailing list -- by :user:<code>jugmac00</code></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/167ca1a42260227f6e74f22b3a44cdd2e65ec3ad"><code>167ca1a</code></a> release 3.25.1</li>
<li><a href="https://github.com/tox-dev/tox/commit/29dcd7307785a36d2985cc5f9f29274a6df27f28"><code>29dcd73</code></a> Fix release</li>
<li><a href="https://github.com/tox-dev/tox/commit/f3949f81349458b90b664883d1a1a488ae196b8e"><code>f3949f8</code></a> Unify badges style (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2448">#2448</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/dcf8917d9ce2b01ac47233413295eeaa8b9bd43d"><code>dcf8917</code></a> fix isolated builds when stderr is buffered and appears after print() (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2449">#2449</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/af83ed1a995b1af8a5b0d7bb3bfdb0f4fc88dd63"><code>af83ed1</code></a> Improve advice on constraints files (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2423">#2423</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5169fdf93560591fdeac142c8cc36d6af1fca2bc"><code>5169fdf</code></a> Bump actions/checkout from 2 to 3 (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2445">#2445</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/255cb3fc6ae4edc5d4d040181993df5148baba0c"><code>255cb3f</code></a> Bump actions/upload-artifact from 2 to 3 (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2443">#2443</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f16834266088f38a5f7e48ad72c6be5376186be2"><code>f168342</code></a> Bump actions/download-artifact from 2 to 3 (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2444">#2444</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/da221ed56924c1af213d8e85cd2ffad9c02fcaa5"><code>da221ed</code></a> Bump actions/setup-python from 2 to 4 (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2446">#2446</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/23af7adb5e95f541f7a4d274d946946c07585322"><code>23af7ad</code></a> Add dependabot</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.5...3.25.1">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tox&package-manager=pip&previous-version=3.24.5&new-version=3.25.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug:normal affects many people or has quite an impact
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants