Skip to content

Commit

Permalink
Fix parallel tests
Browse files Browse the repository at this point in the history
  • Loading branch information
YomesInc authored and Amir Tocker committed Nov 15, 2017
1 parent e165f96 commit f9dc7ed
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions django_tests/test_cloudinaryField.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

from .models import Poll

from .test_helper import *
from .test_helper import SUFFIX

API_TEST_ID = "api_test_{}".format(SUFFIX)
API_TEST_ID = "dj_test_{}".format(SUFFIX)


class TestCloudinaryField(TestCase):
Expand Down
4 changes: 2 additions & 2 deletions tests/archive_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
import urllib3
from urllib3 import disable_warnings

from .test_helper import *
from .test_helper import SUFFIX, TEST_TAG

disable_warnings()

TEST_TAG = "pycloudinary_test_{}".format(SUFFIX)
TEST_TAG = "arch_pycloudinary_test_{}".format(SUFFIX)


class ArchiveTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/streaming_profiles_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import six
from urllib3 import disable_warnings

from .test_helper import *
from .test_helper import SUFFIX

disable_warnings()

Expand Down
2 changes: 1 addition & 1 deletion tests/uploader_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

TEST_IMAGE_HEIGHT = 51
TEST_IMAGE_WIDTH = 241
UNIQUE_TAG = "test_uploader_{}".format(SUFFIX)
UNIQUE_TAG = "up_test_uploader_{}".format(SUFFIX)
TEST_DOCX_ID = "test_docx_{}".format(SUFFIX)


Expand Down

0 comments on commit f9dc7ed

Please sign in to comment.