| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix typo (#2327)rewrite | Jürgen Gmach | 2022-01-17 | 1 | -1/+1 |
| | | |||||
| * | Fix add_config factory argument type annotation bad for containers (#2323) | Bernát Gábor | 2022-01-15 | 1 | -0/+2 |
| | | |||||
| * | Update faq.rst | Bernát Gábor | 2022-01-14 | 1 | -1/+1 |
| | | |||||
| * | Add example for extending the install command | Jürgen Gmach | 2022-01-14 | 1 | -2/+9 |
| | | |||||
| * | Require Python 3.10 to generate the tox documentation (#2322) | Jürgen Gmach | 2022-01-14 | 1 | -0/+1 |
| | | | | | | | | | | | | * Require Python 3.10 to generate the tox documentation This fixes #2321 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> | ||||
| * | Fix some broken links | Bernát Gábor | 2022-01-13 | 4 | -23/+24 |
| | | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Fix devenv not respecting specified path (#2318) | Bernát Gábor | 2022-01-13 | 1 | -0/+1 |
| | | |||||
| * | 2315 (#2317) | Bernát Gábor | 2022-01-13 | 1 | -0/+1 |
| | | |||||
| * | Improve wording on PR 2313 | Bernát Gábor | 2022-01-11 | 1 | -2/+2 |
| | | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Do not allow extending the config set beyond setup (#2314) | Bernát Gábor | 2022-01-11 | 1 | -0/+2 |
| | | |||||
| * | Keep v3 injected environment variable list (#2313) | Bernát Gábor | 2022-01-11 | 1 | -0/+2 |
| | | |||||
| * | Fix CLI documentation is missing and broken documentation references (#2311) | Bernát Gábor | 2022-01-10 | 2 | -5/+3 |
| | | |||||
| * | Fix double clean package and broken report (#2309) | Bernát Gábor | 2022-01-10 | 2 | -0/+4 |
| | | |||||
| * | Legacy parallel flag should accept no arguments (#2307) | Bernát Gábor | 2022-01-10 | 1 | -0/+1 |
| | | |||||
| * | Fix plugin initialization order (#2305) | Bernát Gábor | 2022-01-09 | 1 | -0/+1 |
| | | |||||
| * | Document ConfigSet.loaders (#2306) | Bernát Gábor | 2022-01-09 | 1 | -0/+1 |
| | | |||||
| * | Hint for unrecognized arguments to use -- (#2308) | Bernát Gábor | 2022-01-09 | 1 | -0/+2 |
| | | | | Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> | ||||
| * | Document ownership of the tox.wiki root domain (#2303) | Bernát Gábor | 2022-01-08 | 3 | -11/+7 |
| | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Fix changelog | Bernát Gábor | 2022-01-04 | 1 | -1/+1 |
| | | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | release 4.0.0a104.0.0a10 | Bernát Gábor | 2022-01-04 | 14 | -23/+36 |
| | | |||||
| * | Better selection support (#2290) | Bernát Gábor | 2022-01-04 | 6 | -4/+56 |
| | | |||||
| * | Have the --colored default value be yes in the docs (#2289) | Antoine Dechaume | 2021-12-20 | 1 | -0/+3 |
| | | | | | Co-authored-by: Antoine DECHAUME <> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> | ||||
| * | Drop python 3.6 support (#2275) | Bernát Gábor | 2021-11-17 | 1 | -0/+1 |
| | | |||||
| * | Use pyproject-api package (#2274) | Bernát Gábor | 2021-11-16 | 1 | -0/+2 |
| | | |||||
| * | Update setup changelog | Bernát Gábor | 2021-11-16 | 2 | -7/+21 |
| | | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Support for the --discover flag (#2245) | Bernát Gábor | 2021-10-04 | 1 | -0/+1 |
| | | |||||
| * | Support for external packages and builders (#2235) | Bernát Gábor | 2021-09-26 | 2 | -2/+58 |
| | | |||||
| * | Fix list/depends cmd creates package env as run env | Bernát Gábor | 2021-09-24 | 1 | -0/+2 |
| | | | | | | | | This happens if you declare configuration for a packaging environment. Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Fix CTRL+C not working on Windows | Bernát Gábor | 2021-09-24 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | Seems sending CTRL_C event on Windows to a new process group does not work in general. It registers on cmd.exe and powershell.exe on its own, however is ignored on powershell when ran within Windows Terminal or Wezterm. Sending CTRL_BREAK seems to work, but on the later brings down the shell itself. However, Windows works differently with signals than Linux. On Linux only the root process gets the signal. On Windows when a signal is sent to a process all processes within that process group will get an instance of that signal. This means that on Windows we don't need to forward signals. All child automatically gets it. The only thing we do is escalate the unanswered interrupt to process kill (there's no SIGTERM on Windows). Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Add support for TOX_LIMITED_SHEBANG (#2226) | Bernát Gábor | 2021-09-20 | 1 | -0/+2 |
| | | | | | | | | | | * Add support for TOX_LIMITED_SHEBANG Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> * Fix Windows Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | No pyproject.toml or setup.py and no --install-pkg assumes no package (#2225) | Bernát Gábor | 2021-09-18 | 1 | -0/+2 |
| | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Support for --no-provision flag (#2224) | Bernát Gábor | 2021-09-18 | 2 | -1/+2 |
| | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Support for environment files in set_env (#2223) | Bernát Gábor | 2021-09-18 | 2 | -1/+12 |
| | | |||||
| * | release 4.0.0a94.0.0a9 | Bernát Gábor | 2021-09-16 | 11 | -20/+33 |
| | | |||||
| * | Allow plugins to change pass_env and set_env (#2218) | Bernát Gábor | 2021-09-16 | 1 | -0/+1 |
| | | |||||
| * | Expose the configuration load mechanism to plugins (#2217) | Bernát Gábor | 2021-09-15 | 5 | -2/+16 |
| | | |||||
| * | Support for plugin before and after, fix ASCII report fails (#2214) | Bernát Gábor | 2021-09-11 | 4 | -0/+11 |
| | | |||||
| * | Fix old-new value on recreate cache miss-match are swapped (#2212) | Bernát Gábor | 2021-09-11 | 1 | -0/+1 |
| | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Make ConfigSet ABC and add contains to Loader (#2209) | Bernát Gábor | 2021-09-10 | 1 | -0/+2 |
| | | | | | | | | The ConfigSet should be always specialized via subclassing. The contains is a quality of life imporvement for plugins. Also bumped the tools while at it. Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Let tox run fail when all envs are skipped (#2206) | Jürgen Gmach | 2021-09-10 | 1 | -0/+1 |
| | | |||||
| * | Internal changes to support tox-gh-actions (#2191) | Bernát Gábor | 2021-08-31 | 2 | -0/+3 |
| | | |||||
| * | Fix env variable substitutions with defaults containing colon (#2186) | comabrewer | 2021-08-27 | 1 | -0/+1 |
| | | | | | | | | | | | | | * Fix handling of substitution defaults containing colon * Join remaining parts of string instead of splitting on colon. * Add test with substitution default that contains a colon (URL). Fixes #2182 Signed-off-by: Marco Weber <marco.weber@hotmail.de> * Add changelog entry | ||||
| * | fix link to custom.css in documentation (#2185) | Jürgen Gmach | 2021-08-27 | 1 | -1/+1 |
| | | |||||
| * | fix spelling of PyPI (#2181) | Jürgen Gmach | 2021-08-25 | 2 | -2/+2 |
| | | |||||
| * | Improve documentation and try furo (#2180) | Bernát Gábor | 2021-08-25 | 14 | -235/+1431 |
| | | |||||
| * | release 4.0.0a84.0.0a8release-4.0.0a8 | Bernát Gábor | 2021-08-21 | 20 | -31/+44 |
| | | |||||
| * | Internal changes to accomodate tox-conda (#2172) | Bernát Gábor | 2021-08-21 | 1 | -0/+3 |
| | | | | | | | | | | - introduce ToxEnvCreateArgs to simplify tox env interface - allow skipping the list dependencies configuration for pip installer - expose python environment creation directly via ensure_python_env - executable should only be part of the python cache for virtual environments (moved it in PythonInfo to extra info set) Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
| * | Fix parallel show output not working (#2161) | Bernát Gábor | 2021-08-18 | 1 | -0/+1 |
| | | | | | | When there was also a package built in the given run. Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
| * | Add support for execute interrupt timeouts (#2158) | Bernát Gábor | 2021-08-15 | 2 | -0/+31 |
| | | |||||
| * | Check base python against env name and raise if differs (#2156) | Bernát Gábor | 2021-08-15 | 4 | -42/+45 |
| | | |||||
