summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorIan Cordasco <ian.cordasco@rackspace.com>2015-01-30 18:29:41 -0600
committerIan Cordasco <ian.cordasco@rackspace.com>2015-01-30 18:29:43 -0600
commit7379923070c666d6fc7214a36253d60a25c20cc5 (patch)
tree50ec135debb9aee180c2cbe1976ff2b0e077bd63 /tox.ini
parent57868208d98caa65adba9d59daa6b7304a3cfc83 (diff)
downloadoslo-policy-7379923070c666d6fc7214a36253d60a25c20cc5.tar.gz
Remove use of graduated modules
- Replace usage of oslo_policy.openstack.common.log with oslo_log.log - Replace usage of oslo_policy.openstack.common.fixture.lockutils with oslo_concurrency.fixture.lockutils - Replace tox usage of oslo_policy.openstack.common.lockutils with lockutils-wrapper console script provided by oslo_concurrency Closes-bug: 1415628 Change-Id: I6c18351b5bafa50a4da090b270f576a549db6b93
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index b4fbeb9..63920e7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,7 +16,7 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
# Use the lockutils wrapper to ensure that external locking works correctly
- python -m oslo_policy.openstack.common.lockutils python setup.py test --slowest --testr-args='{posargs}'
+ lockutils-wrapper python setup.py test --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8
@@ -30,7 +30,7 @@ commands = python setup.py build_sphinx
[testenv:cover]
commands =
# Use the lockutils wrapper to ensure that external locking works correctly
- python -m oslo_policy.openstack.common.lockutils python setup.py test --coverage --testr-args='{posargs}'
+ lockutils-wrapper python setup.py test --coverage --testr-args='{posargs}'
[flake8]
# H803 skipped on purpose per list discussion.