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

Parallel mode with -e ALL fails #2167

Closed
guahki opened this issue Aug 20, 2021 · 2 comments · Fixed by #2207
Closed

Parallel mode with -e ALL fails #2167

guahki opened this issue Aug 20, 2021 · 2 comments · Fixed by #2207
Labels
bug:normal affects many people or has quite an impact

Comments

@guahki
Copy link

guahki commented Aug 20, 2021

Using -p together with -e ALL runs all environments in all subprocesses. Using -e <list,of,all,envs> on the other hand works as expected (each subprocess runs one environment).

Minimal example:

tox.ini

[tox]
envlist = py

[testenv]
deps = requests
skip_install = true
commands = python -V

[testenv:lint]
commands = python -c "print('Hello lint')"

[testenv:dev]
commands = python -c "print('Hello dev')"

Environment:

$ tox --version
3.24.2 imported from ~\.local\pipx\venvs\tox\lib\site-packages\tox\__init__.py
$ ~/.local/pipx/venvs/tox/Scripts/python -V
Python 3.9.6

Correct command:

$ tox -p -o -e py,lint,dev
py create: ~\Dev\tmp\test_tox\.tox\py
dev create: ~\Dev\tmp\test_tox\.tox\dev
lint create: ~\Dev\tmp\test_tox\.tox\lint
py installdeps: requests
dev installdeps: requests
lint installdeps: requests
py installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
py run-test-pre: PYTHONHASHSEED='937'
py run-test: commands[0] | python -V
dev installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
dev run-test-pre: PYTHONHASHSEED='633'
dev run-test: commands[0] | python -c 'print('"'"'Hello dev'"'"')'
lint installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
lint run-test-pre: PYTHONHASHSEED='783'
lint run-test: commands[0] | python -c 'print('"'"'Hello lint'"'"')'
Python 3.9.7
✔ OK py in 8.858 seconds
Hello dev
Hello lint
✔ OK dev in 8.929 seconds
✔ OK lint in 8.936 seconds
____________________________________________________________ summary ____________________________________________________________
  py: commands succeeded
  lint: commands succeeded
  dev: commands succeeded
  congratulations :)

Incorrect behaviour:

$ tox -p -o -e ALL
py installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
py run-test-pre: PYTHONHASHSEED='672'
py run-test: commands[0] | python -V
py installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
py run-test-pre: PYTHONHASHSEED='524'
py run-test: commands[0] | python -V
py installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
py run-test-pre: PYTHONHASHSEED='977'
py run-test: commands[0] | python -V
Python 3.9.7
Python 3.9.7
Python 3.9.7
lint installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
lint installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
lint run-test-pre: PYTHONHASHSEED='524'
lint run-test: commands[0] | python -c 'print('"'"'Hello lint'"'"')'
lint run-test-pre: PYTHONHASHSEED='672'
lint run-test: commands[0] | python -c 'print('"'"'Hello lint'"'"')'
lint installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
lint run-test-pre: PYTHONHASHSEED='977'
lint run-test: commands[0] | python -c 'print('"'"'Hello lint'"'"')'
Hello lint
Hello lint
Hello lint
dev installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
dev run-test-pre: PYTHONHASHSEED='524'
dev run-test: commands[0] | python -c 'print('"'"'Hello dev'"'"')'
dev installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
dev run-test-pre: PYTHONHASHSEED='672'
dev run-test: commands[0] | python -c 'print('"'"'Hello dev'"'"')'
dev installed: certifi==2021.5.30,charset-normalizer==2.0.4,idna==3.2,requests==2.26.0,urllib3==1.26.6
dev run-test-pre: PYTHONHASHSEED='977'
dev run-test: commands[0] | python -c 'print('"'"'Hello dev'"'"')'
Hello dev
Hello dev
Hello dev
✔ OK dev in 5.777 seconds
✔ OK py in 5.802 seconds
✔ OK lint in 5.812 seconds
____________________________________________________________ summary ____________________________________________________________
  py: commands succeeded
  lint: commands succeeded
  dev: commands succeeded
  congratulations :)

Please note, that in the incorrect case, all three echos happen three times.

The issues comes from

if (from_option and "ALL" in from_option) or (
, which causes
(os.environ.get(PARALLEL_ENV_VAR_KEY_PRIVATE), True),
to not correctly restrict the env_list to the environment given by os.environ.get(PARALLEL_ENV_VAR_KEY_PRIVATE).

@guahki guahki added the bug:normal affects many people or has quite an impact label Aug 20, 2021
@guahki guahki changed the title Parallel mode with -e ALL fails (on Windows?) Parallel mode with -e ALL fails Sep 7, 2021
@guahki
Copy link
Author

guahki commented Sep 7, 2021

I further investigated the issue and corrected the bug-report above.

Adding env_list = [os.environ.get(PARALLEL_ENV_VAR_KEY_PRIVATE)] if os.environ.get(PARALLEL_ENV_VAR_KEY_PRIVATE) else [] before

all_envs = self._getallenvs(reader)
solves the issue. But I'm not sure, this is the correct solution.

Can somebody with more knowledge about _getenvdata in the config module please shed some light on how to fix this correctly?

@gaborbernat
Copy link
Member

mergify bot pushed a commit to andrewbolster/bolster that referenced this issue Sep 16, 2021
Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.4.
<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.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/50307a5158b37ed75e7cac94ac934d9eb48ab8f5"><code>50307a5</code></a> release 3.24.4</li>
<li><a href="https://github.com/tox-dev/tox/commit/51cc218e71949e90ab7982bbb12a475fcbb90613"><code>51cc218</code></a> venv: do not prepend a truncated shebang interpreter (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2203">#2203</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/3c1c29ab609bf4471d5bf5598585cd76fa890c71"><code>3c1c29a</code></a> Only respect ALL environments when not in parallel (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2207">#2207</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/9f789a770a706bfea0e59181252a68f7d43b5481"><code>9f789a7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2216">#2216</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/156d4961dd50ee629c3c4c78c09ba6b1c0da76d3"><code>156d496</code></a> Make 3.24.3 a headline in the changelog (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2192">#2192</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5ba2a01cd2b20f549bb52fa15b3e9f67d018b44e"><code>5ba2a01</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2190">#2190</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5657a1429f3b7052798385ae6cbb3fa02e3892ca"><code>5657a14</code></a> 🎨📝 Actually use the favicon in Sphinx (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2177">#2177</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0d6c2a790bf10c5dd28d1ea77c334a87c0d28296"><code>0d6c2a7</code></a> 🐛📝 Suppress epub unknown MIME warnings (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2178">#2178</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f5426133405746ae909dfbcebff5f64c14dfb088"><code>f542613</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2176">#2176</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/69329f747bf42103439f6f42566a2c5541769627"><code>69329f7</code></a> 📝 Document when <code>temp_dir</code> setting and substitutions appeared (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2175">#2175</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.4">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.3&new-version=3.24.4)](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 Oct 6, 2021
322: Bump tox from 3.24.3 to 3.24.4 r=alallema a=dependabot[bot]

[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.4.
<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.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/50307a5158b37ed75e7cac94ac934d9eb48ab8f5"><code>50307a5</code></a> release 3.24.4</li>
<li><a href="https://github.com/tox-dev/tox/commit/51cc218e71949e90ab7982bbb12a475fcbb90613"><code>51cc218</code></a> venv: do not prepend a truncated shebang interpreter (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2203">#2203</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/3c1c29ab609bf4471d5bf5598585cd76fa890c71"><code>3c1c29a</code></a> Only respect ALL environments when not in parallel (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2207">#2207</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/9f789a770a706bfea0e59181252a68f7d43b5481"><code>9f789a7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2216">#2216</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/156d4961dd50ee629c3c4c78c09ba6b1c0da76d3"><code>156d496</code></a> Make 3.24.3 a headline in the changelog (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2192">#2192</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5ba2a01cd2b20f549bb52fa15b3e9f67d018b44e"><code>5ba2a01</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2190">#2190</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5657a1429f3b7052798385ae6cbb3fa02e3892ca"><code>5657a14</code></a> 🎨📝 Actually use the favicon in Sphinx (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2177">#2177</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0d6c2a790bf10c5dd28d1ea77c334a87c0d28296"><code>0d6c2a7</code></a> 🐛📝 Suppress epub unknown MIME warnings (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2178">#2178</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f5426133405746ae909dfbcebff5f64c14dfb088"><code>f542613</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2176">#2176</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/69329f747bf42103439f6f42566a2c5541769627"><code>69329f7</code></a> 📝 Document when <code>temp_dir</code> setting and substitutions appeared (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2175">#2175</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.4">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.3&new-version=3.24.4)](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>
bors bot added a commit to meilisearch/meilisearch-python that referenced this issue Oct 7, 2021
322: Bump tox from 3.24.3 to 3.24.4 r=alallema a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.4.
<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.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/50307a5158b37ed75e7cac94ac934d9eb48ab8f5"><code>50307a5</code></a> release 3.24.4</li>
<li><a href="https://github.com/tox-dev/tox/commit/51cc218e71949e90ab7982bbb12a475fcbb90613"><code>51cc218</code></a> venv: do not prepend a truncated shebang interpreter (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2203">#2203</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/3c1c29ab609bf4471d5bf5598585cd76fa890c71"><code>3c1c29a</code></a> Only respect ALL environments when not in parallel (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2207">#2207</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/9f789a770a706bfea0e59181252a68f7d43b5481"><code>9f789a7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2216">#2216</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/156d4961dd50ee629c3c4c78c09ba6b1c0da76d3"><code>156d496</code></a> Make 3.24.3 a headline in the changelog (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2192">#2192</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5ba2a01cd2b20f549bb52fa15b3e9f67d018b44e"><code>5ba2a01</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2190">#2190</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5657a1429f3b7052798385ae6cbb3fa02e3892ca"><code>5657a14</code></a> 🎨📝 Actually use the favicon in Sphinx (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2177">#2177</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0d6c2a790bf10c5dd28d1ea77c334a87c0d28296"><code>0d6c2a7</code></a> 🐛📝 Suppress epub unknown MIME warnings (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2178">#2178</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/f5426133405746ae909dfbcebff5f64c14dfb088"><code>f542613</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2176">#2176</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/69329f747bf42103439f6f42566a2c5541769627"><code>69329f7</code></a> 📝 Document when <code>temp_dir</code> setting and substitutions appeared (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2175">#2175</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.4">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.3&new-version=3.24.4)](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>
bors bot added a commit to meilisearch/docs-scraper that referenced this issue Feb 11, 2022
180: Bump tox from 3.24.3 to 3.24.5 r=brunoocasali a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.24.3 to 3.24.5.
<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>
<p>v3.24.5 (2021-12-29)
Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed an issue where <code>usedevelop</code> would cause an invocation error if setup.py does not exist. -- by :user:<code>VincentVanlaer</code>
<code>[#2197](tox-dev/tox#2197) &lt;https://github.com/tox-dev/tox/issues/2197&gt;</code>_</li>
</ul>
<h2>v3.24.4 (2021-09-16)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li>Fixed handling of <code>-e ALL</code> in parallel mode by ignoring the <code>ALL</code> in subprocesses -- by :user:<code>guahki</code>.
<code>[#2167](tox-dev/tox#2167) &lt;https://github.com/tox-dev/tox/issues/2167&gt;</code>_</li>
<li>Prevent tox from using a truncated interpreter when using
<code>TOX_LIMITED_SHEBANG</code> -- by :user:<code>jdknight</code>.
<code>[#2208](tox-dev/tox#2208) &lt;https://github.com/tox-dev/tox/issues/2208&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Enabled the use of the favicon in the Sphinx docs first
introduced in :pull:<code>764</code> but not integrated fully
-- :user:<code>webknjaz</code>
<code>[#2177](tox-dev/tox#2177) &lt;https://github.com/tox-dev/tox/issues/2177&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/8cf6330195c078545bcbff52c8d31df12da9944f"><code>8cf6330</code></a> release 3.24.5</li>
<li><a href="https://github.com/tox-dev/tox/commit/72e239141d7fbe9f16093f7e1a861eb69ea7e451"><code>72e2391</code></a> Do not reinstall in develop mode without setup.py (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2273">#2273</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/0985677b6a934c9698a5b9e948417560903889b3"><code>0985677</code></a> Move CI to Github Actions (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2293">#2293</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/717b7644a2376c0178ad293c41c76ff6631bdc46"><code>717b764</code></a> Fix typos (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2253">#2253</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/4cf816c97de18dca9d99dc86fec341c1d2c4a20a"><code>4cf816c</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2248">#2248</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/30dbb40f7cce82001b9c269248184057092002dc"><code>30dbb40</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2246">#2246</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/5f2aaf0afbf1d4887b06cebff7acf14c2ed29cad"><code>5f2aaf0</code></a> Declare support for Python 3.10 and update links (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2221">#2221</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/fed6e7a59158412efc91fdde260b69e698a1d091"><code>fed6e7a</code></a> [pre-commit.ci] pre-commit autoupdate</li>
<li><a href="https://github.com/tox-dev/tox/commit/a2370f4ad055cb5d570745d3a06016a7ea76d6cb"><code>a2370f4</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2228">#2228</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/59742ec427bf97cf08eface32c7a58ca8f5c5926"><code>59742ec</code></a> Update changelog.rst</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.24.3...3.24.5">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.3&new-version=3.24.5)](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>
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