summaryrefslogtreecommitdiff
path: root/tox/config.py
diff options
context:
space:
mode:
authorStephan Obermann <stephan.obermann@gmail.com>2016-06-25 18:47:48 +0200
committerStephan Obermann <stephan.obermann@gmail.com>2016-06-25 18:47:48 +0200
commit214ed8a7cde5f68882a566df86ce3878fa66ec77 (patch)
treef0e5576ab98a73320aa9795930f6dc63b1ee95e2 /tox/config.py
parentb50a6ecf3077bd5b4f8fe9a6a740d8fd154c5753 (diff)
parent14ae8802f0241dca1f4d775646b25cc56769034d (diff)
downloadtox-214ed8a7cde5f68882a566df86ce3878fa66ec77.tar.gz
Merged hpk42/tox into default
Diffstat (limited to 'tox/config.py')
-rw-r--r--tox/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox/config.py b/tox/config.py
index 0b90786..ad453f6 100644
--- a/tox/config.py
+++ b/tox/config.py
@@ -182,7 +182,7 @@ class PosargsOption:
class InstallcmdOption:
name = "install_command"
type = "argv"
- default = "python -m pip install {opts} {packages}"
+ default = "pip install {opts} {packages}"
help = "install command for dependencies and package under test."
def postprocess(self, testenv_config, value):
@@ -529,7 +529,7 @@ def tox_addoption(parser):
parser.add_testenv_attribute(
name="list_dependencies_command",
type="argv",
- default="python -m pip freeze",
+ default="pip freeze",
help="list dependencies for a virtual environment")
parser.add_testenv_attribute_obj(DepOption())