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:
parent
9319f903ac
commit
d3a4036817
15 changed files with 31 additions and 27 deletions
10
tests/functional/api_versions/test_v1.py
Normal file
10
tests/functional/api_versions/test_v1.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue