Move tests under stackalytics package

Change-Id: I8475c31bb6120e8b07381217e232c861a8407053
This commit is contained in:
Ilya Shakhat 2015-08-18 15:38:17 +03:00
parent 93c4d01da9
commit 788fd4b3d2
24 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
[DEFAULT]
test_command=OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 ${PYTHON:-python} -m subunit.run discover -t ./ ./tests $LISTOPT $IDOPTION
test_command=OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 ${PYTHON:-python} -m subunit.run discover -t ./ ./stackalytics/tests $LISTOPT $IDOPTION
test_id_option=--load-list $IDFILE
test_list_option=--list

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from tests.api import test_api
from stackalytics.tests.api import test_api
class TestAPICompanies(test_api.TestAPI):

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from tests.api import test_api
from stackalytics.tests.api import test_api
class TestAPIModules(test_api.TestAPI):

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from tests.api import test_api
from stackalytics.tests.api import test_api
class TestAPIReleases(test_api.TestAPI):

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from tests.api import test_api
from stackalytics.tests.api import test_api
class TestAPIStats(test_api.TestAPI):

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from tests.api import test_api
from stackalytics.tests.api import test_api
class TestAPIUsers(test_api.TestAPI):

View File

@ -20,7 +20,7 @@ import testtools
from stackalytics.processor import default_data_processor
from stackalytics.processor import normalizer
from tests.unit import test_data
from stackalytics.tests.unit import test_data
class TestDefaultDataProcessor(testtools.TestCase):