From 991e1333b1bccc0df551d6929617ff30d5cef5cd Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Sat, 14 Jan 2017 21:33:07 +0000 Subject: [PATCH] sample analysis correction --- networkedExample.py | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/networkedExample.py b/networkedExample.py index a38856f..6e61051 100755 --- a/networkedExample.py +++ b/networkedExample.py @@ -35,10 +35,13 @@ print("here comes info on the args variable:") print(kwargs.get('args',None)) - +def testWebAnalysis(run, **kwargs): + print("Simulations are located in "+run.Dir.fullpath()) + print("\n\nStatistics file:") + print(run.Statistics.readText()) hosts=({'name':'natalie','address':'kabinet.penic.eu', 'runs':Runs, 'username':'samo', 'remotebasepath':'simulations-test/subdir/subdir'}, {'name':'Hestia','address':'127.0.0.1', 'runs':Runs, 'username':'samo'}) -analyses={'analysis1':analyze,} +analyses={'analysis1':analyze,'webReport':testWebAnalysis} tsmgr.start(hosts, analyses=analyses) -- Gitblit v1.9.3