From 225625bcf34c80b3c6b7c80ca8f1360451a417b9 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Mon, 12 Nov 2012 12:54:26 +0000 Subject: Build activities with a custom script It should be faster and cleaner than the sugar-fructose hack. Eventually dn-build might replace jhbuild. We don't really need all that complexity. --- (limited to 'tests/shell.py') diff --git a/tests/shell.py b/tests/shell.py index 74303a2..8beef1c 100644 --- a/tests/shell.py +++ b/tests/shell.py @@ -3,8 +3,7 @@ import time import tree -ACTIVITIES_WITH_OBJECT_CHOOSER = ["Read", "Jukebox"] -ACTIVITIES_TO_IGNORE = ["Pippy"] +ACTIVITIES_WITH_OBJECT_CHOOSER = [] def build_activities_list(): root = tree.get_root() @@ -17,8 +16,7 @@ def build_activities_list(): for row in [cells[i:i+5] for i in range(0, len(cells), 5)]: activity_name = row[2].text - if activity_name not in ACTIVITIES_TO_IGNORE: - activities.append(activity_name) + activities.append(activity_name) activities.sort() -- cgit v0.9.1