summaryrefslogtreecommitdiff
path: root/run_examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_examples.py')
-rw-r--r--run_examples.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/run_examples.py b/run_examples.py
index ce07dcc..ceb9a33 100644
--- a/run_examples.py
+++ b/run_examples.py
@@ -3,4 +3,8 @@ sys.path.append('./lib')
from Pb import *
for cls in Pb.__subclasses__():
print cls.__name__
- cls.example_run()
+ instance = cls.example_run()
+ instance.file_s3move()
+ print instance.file_json()
+ instance.db_send();
+ break