summaryrefslogtreecommitdiff
path: root/monkey/edits.py
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-02-27 16:03:51 +0100
committerAleš Smodiš <aless@guru.si>2015-08-11 14:26:02 +0200
commit901643b3736333a92baefaf029aae28c237c5aab (patch)
tree271c04b8416400e658fbcadc46b3962fe9a823c1 /monkey/edits.py
parentf5c4f86ad5ba2d811261de5303091603a58dbc93 (diff)
Exclude admin and test users when analyzing traces
Diffstat (limited to 'monkey/edits.py')
-rw-r--r--monkey/edits.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/monkey/edits.py b/monkey/edits.py
index e522964..8b8c3c3 100644
--- a/monkey/edits.py
+++ b/monkey/edits.py
@@ -243,7 +243,10 @@ if __name__ == '__main__':
for problem in Problem.objects.all():
print(problem.name)
pid = problem.pk
- traces = [a.trace for a in Attempt.objects.filter(problem=problem, done=True)]
+ attempts = Attempt.objects.filter(problem=problem, done=True) \
+ .exclude(user__username='admin') \
+ .exclude(user__username='test')
+ traces = [a.trace for a in attempts]
edits[pid], submissions[pid], queries[pid] = get_edits_from_traces(traces)
pickle.dump((edits, submissions, queries), open('edits.pickle', 'wb'))