summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Avoid ignored explicit argument 're' console message (#2545)Sorin Sbarnea2022-11-221-1/+5
| | | Fixes: #2342
* Disable coloring with TERM=dumb or NO_COLOR (#2541)Sorin Sbarnea2022-11-211-1/+3
| | | | | | | | | | | | | | | | | * Disable coloring with TERM=dumb or NO_COLOR Fixes: #1290 Related: https://no-color.org/ * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Add changelog fragment * Fixed logic Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Bump tools and deps (#2522)Bernát Gábor2022-10-304-12/+11
| | | | | | | | | | | * Bump tools and deps Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> * Simplify docs conf Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Use PEP-621 to load project dependencies (#2499)Bernát Gábor2022-09-108-21/+68
|
* Check 3.11 support (#2492)Bernát Gábor2022-09-091-0/+3
|
* Bump tools (#2491)Bernát Gábor2022-09-093-6/+3
|
* Bump dependenciesBernát Gábor2022-09-091-1/+1
| | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
* Bump lintersBernát Gábor2022-09-092-2/+2
| | | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
* Display registered plugins with --version (#2413)Max Droy2022-09-093-11/+45
| | | | 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>
* release 4.0.0b2Bernát Gábor2022-09-091-2/+1
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Do not perform interpolation for INI files (#2352)Bernát Gábor2022-02-102-2/+2
|
* Support -va as well as -av (#2351)Bernát Gábor2022-02-101-1/+5
|
* Use .tox instead of .tox/4 as work dir (#2347)Bernát Gábor2022-02-081-2/+1
|
* Fix add_config factory argument type annotation bad for containers (#2323)Bernát Gábor2022-01-151-2/+3
|
* Fix some broken linksBernát Gábor2022-01-131-2/+2
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Fix devenv not respecting specified path (#2318)Bernát Gábor2022-01-131-5/+8
|
* 2315 (#2317)Bernát Gábor2022-01-131-0/+1
|
* Do not allow extending the config set beyond setup (#2314)Bernát Gábor2022-01-113-0/+16
|
* Keep v3 injected environment variable list (#2313)Bernát Gábor2022-01-112-0/+9
|
* Fix CLI documentation is missing and broken documentation references (#2311)Bernát Gábor2022-01-101-2/+2
|
* Fix double clean package and broken report (#2309)Bernát Gábor2022-01-103-4/+19
|
* Legacy parallel flag should accept no arguments (#2307)Bernát Gábor2022-01-102-3/+4
|
* Fix plugin initialization order (#2305)Bernát Gábor2022-01-094-15/+14
|
* Document ConfigSet.loaders (#2306)Bernát Gábor2022-01-091-1/+1
|
* Hint for unrecognized arguments to use -- (#2308)Bernát Gábor2022-01-091-0/+13
| | | Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Better selection support (#2290)Bernát Gábor2022-01-0431-445/+613
|
* Bump lintersBernát Gábor2021-12-119-20/+23
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Drop python 3.6 support (#2275)Bernát Gábor2021-11-1791-596/+740
|
* Use pyproject-api package (#2274)Bernát Gábor2021-11-167-500/+4
|
* Update setup changelogBernát Gábor2021-11-1621-44/+151
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Support for the --discover flag (#2245)Bernát Gábor2021-10-041-0/+2
|
* Support for external packages and builders (#2235)Bernát Gábor2021-09-2619-234/+470
|
* Fix list/depends cmd creates package env as run envBernát Gábor2021-09-249-42/+57
| | | | | | | 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 interruptBernát Gábor2021-09-241-0/+6
|
* Fix CTRL+C not working on WindowsBernát Gábor2021-09-242-14/+10
| | | | | | | | | | | | | | | | | | 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ábor2021-09-202-2/+37
| | | | | | | | | * 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ábor2021-09-183-8/+19
| | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Support for --no-provision flag (#2224)Bernát Gábor2021-09-185-16/+45
| | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Support for environment files in set_env (#2223)Bernát Gábor2021-09-185-31/+59
|
* Allow plugins to change pass_env and set_env (#2218)Bernát Gábor2021-09-164-12/+24
|
* Expose the configuration load mechanism to plugins (#2217)Bernát Gábor2021-09-1546-438/+631
|
* Support for plugin before and after, fix ASCII report fails (#2214)Bernát Gábor2021-09-116-26/+85
|
* Fix old-new value on recreate cache miss-match are swapped (#2212)Bernát Gábor2021-09-112-4/+7
| | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Make ConfigSet ABC and add contains to Loader (#2209)Bernát Gábor2021-09-102-2/+13
| | | | | | | 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 Gmach2021-09-101-2/+4
|
* Internal changes to support tox-gh-actions (#2191)Bernát Gábor2021-08-319-61/+114
|
* Fix env variable substitutions with defaults containing colon (#2186)comabrewer2021-08-271-1/+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 spelling of PyPI (#2181)Jürgen Gmach2021-08-251-1/+1
|
* Internal changes to accomodate tox-conda (#2172)Bernát Gábor2021-08-219-90/+79
| | | | | | | | | - 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 coverage for windows on local subprocessBernát Gábor2021-08-181-5/+6
| | | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>