You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/changelog.rst
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,7 +198,7 @@ Features - 4.0.0a6
198
198
final report will be soon printed and makes the status update redundant) - by :user:`gaborbernat`. (`#1909 <https://github.com/tox-dev/tox/issues/1909>`_)
199
199
- The ``_TOX_SHOW_THREAD`` environment variable can be used to print alive threads when tox exists (useful to debug
200
200
when tox hangs because of some non-finished thread) and also now prints the pid of the local subprocess when reporting
201
-
the outcome of a execution - by :user:`gaborbernat`. (`#1915 <https://github.com/tox-dev/tox/issues/1915>`_)
201
+
the outcome of a execution - by :user:`gaborbernat`. (`#1915 <https://github.com/tox-dev/tox/pull/1915>`_)
202
202
203
203
Bugfixes - 4.0.0a6
204
204
~~~~~~~~~~~~~~~~~~
@@ -212,7 +212,7 @@ Bugfixes - 4.0.0a6
212
212
and post was not always executed) - by :user:`gaborbernat`. (`#1843 <https://github.com/tox-dev/tox/issues/1843>`_)
213
213
- Support requirement files containing ``--hash`` constraints - by :user:`gaborbernat`. (`#1903 <https://github.com/tox-dev/tox/issues/1903>`_)
214
214
- Fix a bug that caused tox to never finish when pulling configuration from a tox run environment that was never executed
215
-
- by :user:`gaborbernat`. (`#1915 <https://github.com/tox-dev/tox/issues/1915>`_)
215
+
- by :user:`gaborbernat`. (`#1915 <https://github.com/tox-dev/tox/pull/1915>`_)
216
216
217
217
Deprecations and Removals - 4.0.0a6
218
218
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -271,9 +271,9 @@ Features - 4.0.0a4
271
271
~~~~~~~~~~~~~~~~~~
272
272
- Use ``.tox/4`` instead of ``.tox4`` folder (so ignores for tox 3 works for tox 4 too), reminder we'll rename this to
273
273
just ``.tox`` before public release, however to encourage testing tox 4 in parallel with tox 3 this is helpful
274
-
- by :user:`gaborbernat`. (`#1812 <https://github.com/tox-dev/tox/issues/1812>`_)
274
+
- by :user:`gaborbernat`. (`#1812 <https://github.com/tox-dev/tox/discussions/1812>`_)
275
275
- Colorize the ``config`` command: section headers are yellow, keys are green, values remained white, exceptions are light
276
-
red and comments are cyan - by :user:`gaborbernat`. (`#1821 <https://github.com/tox-dev/tox/issues/1821>`_)
276
+
red and comments are cyan - by :user:`gaborbernat`. (`#1821 feature <https://github.com/tox-dev/tox/pull/1821>`_)
277
277
278
278
Bugfixes - 4.0.0a4
279
279
~~~~~~~~~~~~~~~~~~
@@ -285,9 +285,9 @@ Bugfixes - 4.0.0a4
285
285
by :user:`gaborbernat`. (`#1793 <https://github.com/tox-dev/tox/issues/1793>`_)
286
286
- Fix ``RequirementsFile`` from tox is rendered incorrectly in ``config`` command - by :user:`gaborbernat`. (`#1820 <https://github.com/tox-dev/tox/issues/1820>`_)
287
287
- Fix a bug in the configuration system where referring to the same named key in another env/section causes circular
288
-
dependency error - by :user:`gaborbernat`. (`#1821 <https://github.com/tox-dev/tox/issues/1821>`_)
288
+
dependency error - by :user:`gaborbernat`. (`#1821 bugfix <https://github.com/tox-dev/tox/issues/1821>`_)
289
289
- Raise ``ValueError`` with descriptive message when a requirements file specified does not exist
290
-
- by :user:`gaborbernat`. (`#1828 <https://github.com/tox-dev/tox/issues/1828>`_)
290
+
- by :user:`gaborbernat`. (`#1828 <https://github.com/tox-dev/tox/pull/1828>`_)
291
291
- Support all valid requirement file specification without delimiting space in the ``deps`` of the ``tox.ini`` -
292
292
by :user:`gaborbernat`. (`#1834 <https://github.com/tox-dev/tox/issues/1834>`_)
293
293
@@ -305,7 +305,7 @@ Features - 4.0.0a3
305
305
- - Raise exception when variable substitution enters into a circle.
306
306
- Add ``{/}`` as substitution for os specific path separator.
307
307
- Add ``{env_bin_dir}`` constant substitution.
308
-
- Implement support for ``--discover`` flag - by :user:`gaborbernat`. (`#1784 <https://github.com/tox-dev/tox/issues/1784>`_)
308
+
- Implement support for ``--discover`` flag - by :user:`gaborbernat`. (`#1784 feature <https://github.com/tox-dev/tox/pull/1784>`_)
309
309
310
310
Bugfixes - 4.0.0a3
311
311
~~~~~~~~~~~~~~~~~~
@@ -323,7 +323,7 @@ Bugfixes - 4.0.0a3
323
323
arguments strip both ``'`` and ``"`` quoted outcomes).
324
324
- Allow windows paths in substitution set/default (the ``:`` character used to separate substitution arguments may
325
325
also be present in paths on Windows - do not support single capital letter values as substitution arguments) -
326
-
by :user:`gaborbernat`. (`#1784 <https://github.com/tox-dev/tox/issues/1784>`_)
326
+
by :user:`gaborbernat`. (`#1784 bugfix <https://github.com/tox-dev/tox/issues/1784>`_)
327
327
- Rework how we handle Python packaging environments:
328
328
329
329
- the base packaging environment changed from ``.package`` to ``.pkg``,
@@ -348,22 +348,22 @@ v4.0.0a2 (2021-01-09)
348
348
Features - 4.0.0a2
349
349
~~~~~~~~~~~~~~~~~~
350
350
- Add option to disable colored output, and support ``NO_COLOR`` and ``FORCE_COLOR`` environment variables - by
- Fix coverage generation in CI - by :user:`gaborbernat`. (`#1551 <https://github.com/tox-dev/tox/issues/1551>`_)
355
+
- Fix coverage generation in CI - by :user:`gaborbernat`. (`#1551 bugfix <https://github.com/tox-dev/tox/pull/1551>`_)
356
356
- Fix the CI failures:
357
357
358
358
- drop Python 3.5 support as it's not expected to get to a release before EOL,
359
359
- fix test using ``\n`` instead of ``os.linesep``,
360
360
- Windows Python 3.6 does not contain ``_overlapped.ReadFileInto``
361
361
362
-
- by :user:`gaborbernat`. (`#1556 <https://github.com/tox-dev/tox/issues/1556>`_)
362
+
- by :user:`gaborbernat`. (`#1556 <https://github.com/tox-dev/tox/pull/1556>`_)
363
363
364
364
Improved Documentation - 4.0.0a2
365
365
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
366
-
- Add base documentation by merging virtualenv structure with tox 3 - by :user:`gaborbernat`. (`#1551 <https://github.com/tox-dev/tox/issues/1551>`_)
366
+
- Add base documentation by merging virtualenv structure with tox 3 - by :user:`gaborbernat`. (`#1551 docs <https://github.com/tox-dev/tox/issues/1551>`_)
367
367
368
368
369
369
v4.0.0a1
@@ -375,4 +375,4 @@ v4.0.0a1
375
375
The current tox is the second iteration of implementation. From version ``0.5`` all the way to ``3.X``
376
376
we numbered the first iteration. Version ``4.0.0a1`` is a complete rewrite of the package, and as such this release
377
377
history starts from there. The old changelog is still available in the
Copy file name to clipboardExpand all lines: docs/development.rst
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@ Getting started
9
9
below will help you get started with development, testing, and documentation. We’re pleased that you are interested in
10
10
working on tox. This document is meant to get you setup to work on tox and to act as a guide and reference
11
11
to the development setup. If you face any issues during this process, please
12
-
`open an issue <https://github.com/tox-dev/tox/issues/new?title=Trouble+with+development+environment>`_ about it on
13
-
the issue tracker.
12
+
`open an issue <https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ftox-dev%2Ftox%2Fissues%2Fnew%3Ftitle%3DTrouble%2Bwith%2Bdevelopment%2Benvironment>`_
13
+
about it on the issue tracker.
14
14
15
15
Setup
16
16
~~~~~
@@ -60,7 +60,7 @@ specify a specific version of Python by using the ``pyNN`` format, such as: ``py
60
60
61
61
``tox`` has been configured to forward any additional arguments it is given to ``pytest``.
62
62
This enables the use of pytest's
63
-
`rich CLI <https://docs.pytest.org/en/latest/usage.html#specifying-tests-selecting-tests>`_. As an example, you can
63
+
`rich CLI <https://docs.pytest.org/en/latest/how-to/usage.html#specifying-which-tests-to-run>`_. As an example, you can
64
64
select tests using the various ways that pytest provides:
65
65
66
66
.. code-block:: shell
@@ -215,8 +215,9 @@ initiate a vote among the existing maintainers.
215
215
216
216
- GitHub Push Access (provides also CI administration capabilities)
217
217
- PyPI Publishing Access
218
-
- ReadTheDocs Administration capabilities (the root domain `tox.wiki <https://tox.wiki>`_ is currently owned and
219
-
maintained by the primary maintainer and author ``Bernat Gabor``; bought via `Porkbun <https://porkbun.com/>`_
218
+
- ReadTheDocs Administration capabilities (the root domain `tox.wiki <https://tox.wiki/en/latest/>`_ is currently
219
+
owned and maintained by the primary maintainer and author ``Bernat Gabor``; bought via
0 commit comments