diff --git a/oslo/version/__init__.py b/oslo/version/__init__.py new file mode 100644 index 0000000..30ed0a7 --- /dev/null +++ b/oslo/version/__init__.py @@ -0,0 +1,15 @@ +# vim: tabstop=4 shiftwidth=4 softtabstop=4 + +# Copyright (c) 2013 Hewlett-Packard Development Company, L.P. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. diff --git a/oslo/version/tests/__init__.py b/tests/__init__.py similarity index 100% rename from oslo/version/tests/__init__.py rename to tests/__init__.py diff --git a/oslo/version/tests/test_version.py b/tests/test_version.py similarity index 98% rename from oslo/version/tests/test_version.py rename to tests/test_version.py index 09a70f5..031302e 100644 --- a/oslo/version/tests/test_version.py +++ b/tests/test_version.py @@ -19,8 +19,8 @@ import os import fixtures -from oslo.version import tests from oslo.version import version +import tests class DeferredVersionTestCase(tests.BaseTestCase): diff --git a/tox.ini b/tox.ini index 3d8491c..fc54f73 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,8 @@ [tox] minversion = 1.6 -skipsdist = True envlist = py26,py27,pypy,pep8 [testenv] -usedevelop = True install_command = pip install {opts} {packages} setenv = VIRTUAL_ENV={envdir} LANG=en_US.UTF-8