Siguen los retoques. Tests locales exitosos, listo para mover a entorno

de pruebas y dejar corriendo junto a explorer.
This commit is contained in:
pablomartincalvo 2018-10-13 17:45:42 +02:00
parent 6a0baf4de6
commit 4edff2e0c1
7 changed files with 177 additions and 81 deletions

View file

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import sys
sys.path.append('..')
from capturer.capturer import CapturingTask
from capturer.capturer import CapturingTask, Capturer
@ -17,5 +17,11 @@ def test_CapturingTask():
print(task.get_ad_data())
def test_Capturer():
capturer = Capturer()
capturer.start()
test_CapturingTask()
# test_CapturingTask()
test_Capturer()