Skip to content

Commit 098e3c1

Browse files
committed
Tweak python version support, add wait to int test
1 parent 2ce2814 commit 098e3c1

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def run(self):
2525
setuptools.setup(
2626
name='frameioclient',
2727
version=version,
28-
python_requires='>=2.6',
28+
python_requires='>=2.6, <4',
2929
install_requires=[
3030
'requests',
3131
'urllib3',

tests/integration.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import json
44
import mimetypes
55
import platform
6+
import time
67

78
from frameioclient import FrameioClient
89

@@ -83,6 +84,11 @@ def test_upload(client):
8384

8485
print("Done uploading file {} of {}".format((count+1), len(dled_files)))
8586

87+
print("Sleeping for 5 seconds to allow uploads to finish...")
88+
time.sleep(5)
89+
90+
print("Continuing...")
91+
8692
return new_parent_id
8793

8894
# Flatten asset children and pull out important info for comparison

0 commit comments

Comments
 (0)