Whitelist mkdir as external in the tox.ini file

This will avoid the following warning message when running tox -e ical:

WARNING:test command found but not installed in testenv
  cmd: /usr/bin/mkdir
  env: .../irc-meetings/.tox/ical
Maybe forgot to specify a dependency?

Change-Id: I1e709b93337f71d369e0bcc9e37df196b1580232
This commit is contained in:
Christian Berendt 2015-05-27 17:05:51 +02:00
parent b258c24a8e
commit 8cfa2a01be
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ skipsdist = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = mkdir
[testenv:venv]
commands = {posargs}