I tried this package (looks superuseful!) but it needed a long time to initialize a run, took very long to execute it and the monitoring didnt show anything.
Pasting the output of a test run:
I executed:
time smiley run -v --local --database smiley.db test.py
database already initialized
ignoring packages under /usr/local/lib/python2.7/dist-packages/smiley/
ignoring packages under /usr/local/lib/python2.7/dist-packages/coverage/
ignoring packages under /usr/lib/python2.7/
ignoring packages under /usr/lib/python2.7/
ignoring packages under /usr/lib/python2.7/
ignoring packages under /usr/lib/python2.7/
including site-packages /usr/local/lib/python2.7/dist-packages
hola
1
2
3
4
5
real 0m13.503s
user 0m0.248s
sys 0m0.088s
On another terminal:
smiley monitor -v
Waiting for incoming data
Nothing happens there.
I installed it following your instructions on the docs (sudo pip install).
Thanks for your work!
Oh, and my test code looks like this:
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on Tue Oct 22 12:00:00 2013
@author: sam
"""
print "hola"
lista = [1,2,3,4,5]
for elem in lista:
print elem
I tried this package (looks superuseful!) but it needed a long time to initialize a run, took very long to execute it and the monitoring didnt show anything.
Pasting the output of a test run:
On another terminal:
Nothing happens there.
I installed it following your instructions on the docs (sudo pip install).
Thanks for your work!
Oh, and my test code looks like this: