Reorganise tests into unit and functional categories.

Tox (and hence Travis) only runs unit tests
Functional tests can be run manually, with the default Python version
This commit is contained in:
sneakypete81 2013-06-29 12:43:41 +01:00
parent 9319f903ac
commit d3a4036817
15 changed files with 31 additions and 27 deletions

View file

@ -0,0 +1,10 @@
from tests.functional import test_albums, test_photos, test_tags
class TestAlbumsV1(test_albums.TestAlbums):
api_version = 1
class TestPhotosV1(test_photos.TestPhotos):
api_version = 1
class TestTagsV1(test_tags.TestTags):
api_version = 1