Mercurial > hg > webaudioevaluationtool
changeset 1057:6dab902304c3
Make explicit that 'next test' in server only relates to 'pseudo-random mode'.
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Thu, 02 Jul 2015 15:44:35 +0100 |
parents | ae2f1c7f7584 |
children | 6008c26076c0 |
files | .hgignore pythonServer.py |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore Wed Jul 01 15:19:55 2015 +0100 +++ b/.hgignore Thu Jul 02 15:44:35 2015 +0100 @@ -26,4 +26,8 @@ re:^realismTest\.html$ saves/*.xml saves/timelines -saves/timelines-old \ No newline at end of file +saves/timelines-old +saves/*.csv +saves/*/*.csv +saves/*/*.png +saves/*/*.xml \ No newline at end of file
--- a/pythonServer.py Wed Jul 01 15:19:55 2015 +0100 +++ b/pythonServer.py Thu Jul 02 15:44:35 2015 +0100 @@ -20,7 +20,7 @@ print "Next save - " + curFileName pseudo_index = curSaveIndex % len(pseudo_files) -print "Next test - " + pseudo_files[pseudo_index] +print "Next test in pseudo-random queue - " + pseudo_files[pseudo_index] def send404(s): s.send_response(404)