Skip to content

Commit

Permalink
Fix #2633 - Document user level config (#2736)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziima committed Dec 16, 2022
1 parent 36ec2c0 commit fc9b36f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/changelog/2633.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Document user level config.
13 changes: 13 additions & 0 deletions docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -750,3 +750,16 @@ Pip installer
If ``true``, adds ``--pre`` to the ``opts`` passed to :ref:`install_command`. This will cause it to install the
latest available pre-release of any dependencies without a specified version. If ``false``, pip will only install
final releases of unpinned dependencies.

User configuration
------------------

tox allows creation of user level config-file to modify default values of the CLI commands.
It is localted in the OS-specific user config directory under ``tox/config.ini`` path, see ``tox --help`` output for exact location.
It can be changed via ``TOX_CONFIG_FILE`` environment variable.
Example configuration:

.. code-block:: ini
[tox]
skip_missing_interpreters = true

0 comments on commit fc9b36f

Please sign in to comment.