Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Feature: suppress step timings for verbosity=1 #2891 (#2992)release-4.5.0 | Ned Batchelder | 2023-04-24 | 1 | -1/+1 |
| | |||||
* | Fix various issues with missing interpreters (#2828) | Stephen Finucane | 2023-01-06 | 1 | -1/+3 |
| | | | fix https://github.com/tox-dev/tox/issues/2811 | ||||
* | Fix devenv when package for env is wheel/editable (#2820) | Bernát Gábor | 2023-01-04 | 1 | -8/+8 |
| | | | Resolves https://github.com/tox-dev/tox/issues/2815 | ||||
* | Fix --skip-missing-interpreters (#2793) | q0w | 2022-12-29 | 1 | -0/+1 |
| | | | Closes https://github.com/tox-dev/tox/issues/2649 | ||||
* | Fix --sdistonly behaviour (#2775) | q0w | 2022-12-25 | 1 | -1/+5 |
| | |||||
* | Suppress a report output when verbosity = 0. (#2774) | q0w | 2022-12-25 | 1 | -3/+9 |
| | | | | | * Suppress a report output when verbosity = 0. * Use os.linesep | ||||
* | Fix python hash seed not being set (#2739) | Bernát Gábor | 2022-12-16 | 1 | -3/+26 |
| | | | Resolves https://github.com/tox-dev/tox/issues/2645 | ||||
* | Fix legacy flags, deprecate them and remove --index-url (#2731) | Bernát Gábor | 2022-12-15 | 1 | -15/+51 |
| | | | Resolves https://github.com/tox-dev/tox/issues/2690 | ||||
* | Show only default env list for tox config by default (#2726) | Bernát Gábor | 2022-12-14 | 1 | -2/+2 |
| | |||||
* | Ensure change_dir is created before running commands (#2643) | Bernát Gábor | 2022-12-08 | 1 | -0/+1 |
| | | | Resolves https://github.com/tox-dev/tox/issues/2620 | ||||
* | tox --showconfig -e py shows core configs (#2625) | Bernát Gábor | 2022-12-07 | 1 | -1/+1 |
| | | | Resolves https://github.com/tox-dev/tox/issues/2624 | ||||
* | Bump deps and tools | Bernát Gábor | 2022-11-22 | 1 | -4/+4 |
| | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Use PEP-621 to load project dependencies (#2499) | Bernát Gábor | 2022-09-10 | 1 | -1/+1 |
| | |||||
* | Bump linters | Bernát Gábor | 2022-09-09 | 1 | -1/+1 |
| | | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Display registered plugins with --version (#2413) | Max Droy | 2022-09-09 | 1 | -9/+36 |
| | | | | Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Fix devenv not respecting specified path (#2318) | Bernát Gábor | 2022-01-13 | 1 | -5/+8 |
| | |||||
* | 2315 (#2317) | Bernát Gábor | 2022-01-13 | 1 | -0/+1 |
| | |||||
* | Legacy parallel flag should accept no arguments (#2307) | Bernát Gábor | 2022-01-10 | 2 | -3/+4 |
| | |||||
* | Better selection support (#2290) | Bernát Gábor | 2022-01-04 | 10 | -120/+111 |
| | |||||
* | Drop python 3.6 support (#2275) | Bernát Gábor | 2021-11-17 | 13 | -44/+64 |
| | |||||
* | Update setup changelog | Bernát Gábor | 2021-11-16 | 2 | -3/+15 |
| | | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Support for external packages and builders (#2235) | Bernát Gábor | 2021-09-26 | 1 | -2/+4 |
| | |||||
* | Fix list/depends cmd creates package env as run env | Bernát Gábor | 2021-09-24 | 3 | -21/+16 |
| | | | | | | | 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 the interrupt thread is deadlocking when receiving an interrupt | Bernát Gábor | 2021-09-24 | 1 | -0/+6 |
| | |||||
* | Fix CTRL+C not working on Windows | Bernát Gábor | 2021-09-24 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | | | 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> | ||||
* | Support for --no-provision flag (#2224) | Bernát Gábor | 2021-09-18 | 2 | -3/+3 |
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Expose the configuration load mechanism to plugins (#2217) | Bernát Gábor | 2021-09-15 | 8 | -13/+16 |
| | |||||
* | Support for plugin before and after, fix ASCII report fails (#2214) | Bernát Gábor | 2021-09-11 | 1 | -8/+15 |
| | |||||
* | Let tox run fail when all envs are skipped (#2206) | Jürgen Gmach | 2021-09-10 | 1 | -2/+4 |
| | |||||
* | Fix parallel show output not working (#2161) | Bernát Gábor | 2021-08-18 | 1 | -3/+3 |
| | | | | | When there was also a package built in the given run. Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Add support for args_are_paths (#2157) | Bernát Gábor | 2021-08-15 | 1 | -4/+10 |
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Support CLI run flags for tox config (#2150) | Bernát Gábor | 2021-08-09 | 3 | -24/+30 |
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Add support for exec subcommand (#2142) | Bernát Gábor | 2021-08-07 | 2 | -7/+38 |
| | | | | | | | | | | | | | | | | | * Add support for exec subcommand Run arbitrary commands within your tox environment. Don't abuse it. Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> * Update docs/changelog/1790.feature.rst Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com> * reindent Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com> | ||||
* | Add outcome of the tox environment evaluation into result JSON (#2144) | Bernát Gábor | 2021-08-07 | 1 | -1/+7 |
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | `tox -e ALL` now runs all environments as expected (#2114) | Jürgen Gmach | 2021-07-26 | 1 | -18/+33 |
| | | | | | | | | | | | | | | | * `tox -e ALL` now runs all environments as expected This fixes #2112. * Fix tox -e ALL not working Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> * Add test Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Minor code improvements (#2017) | Miroslav Šedivý | 2021-04-11 | 1 | -6/+3 |
| | | | | | | | | | * Use !r to repr strings * Simplify loops and expressions * Improve exception traceback * Add Python 3.10 to installation.rst | ||||
* | minor doc improvements (#2006) | Jürgen Gmach | 2021-04-08 | 2 | -4/+4 |
| | |||||
* | Refactor: Simplify and clean up the code (#1997) | Miroslav Šedivý | 2021-04-06 | 1 | -2/+2 |
| | | | Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> | ||||
* | Start plugin interface documentation and installer (#1991) | Bernát Gábor | 2021-04-05 | 11 | -15/+18 |
| | | | | | | | | - Add documentation for the plugin interface - Introduce the installer abstraction - Rework how we handle tox deps section, requirement and constraint files - Support for escaping comments in tox.ini configs Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Fix legacy list env command for empty/missing envlist (#1988) | Jürgen Gmach | 2021-04-01 | 1 | -1/+1 |
| | |||||
* | Show skipped envs in reports on platform mismatch (#1970) | Jürgen Gmach | 2021-03-20 | 2 | -4/+4 |
| | | | Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com> | ||||
* | Fix typos, modernize and simplify some code (#1971) | Miroslav Šedivý | 2021-03-12 | 1 | -2/+0 |
| | |||||
* | Support for ignore_outcome (#1960) | Andrey Bienkowski | 2021-03-04 | 2 | -13/+25 |
| | | | Co-authored-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Fix tox is not exiting because package env thread holding it up | Bernát Gábor | 2021-02-15 | 1 | -6/+6 |
| | | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Smarter tox env finish status report (#1910) | Bernát Gábor | 2021-02-13 | 3 | -20/+35 |
| | | | | | | - do not report when interrupted - do not report for the final env Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Add quickstart (#1907) | Bernát Gábor | 2021-02-12 | 1 | -2/+43 |
| | |||||
* | Add more flake8 checks (#1899) | Bernát Gábor | 2021-02-06 | 2 | -3/+3 |
| | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Drop sdistsrc and support --installpkg (#1890) | Bernát Gábor | 2021-02-01 | 5 | -53/+86 |
| | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Comment support in ini and alias in show config (#1889) | Bernát Gábor | 2021-01-31 | 1 | -0/+1 |
| | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> | ||||
* | Add platform support (#1888) | Bernát Gábor | 2021-01-30 | 1 | -15/+14 |
| | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net> |