1
0
mirror of https://github.com/fedora-python/tox-current-env.git synced 2025-08-23 06:58:52 +02:00

Apply suggestions from code review

Co-Authored-By: Petr Viktorin <encukou@gmail.com>
This commit is contained in:
Miro Hrončok
2019-08-12 16:05:18 +02:00
committed by GitHub
parent 71d21b8266
commit 7b6ccc79cb
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ The ``tox-current-env`` plugin adds two options:
Instead of running any ``commands``,
simply prints the declared dependencies in ``deps`` to the standard output or specified file.
This is useful for preparing the current environment for the above.
``--print-deps-to-file`` will override the file, if it already exists.
``--print-deps-to-file`` will overwrite the file if it already exists.
Invoking ``tox`` without any of the above options should behave as regular ``tox`` invocation without this plugin.
Any deviation from this behavior is considered a bug.

View File

@@ -26,7 +26,7 @@ def tox_addoption(parser):
dest="print_deps_path",
metavar="PATH",
default=None,
help="Like --print-deps-only, but to a file (overrides the file)",
help="Like --print-deps-only, but to a file. Overwrites the file if it exists.",
)