
Tox (and hence Travis) only runs unit tests Functional tests can be run manually, with the default Python version
10 lines
254 B
Python
10 lines
254 B
Python
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
|