Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-12 12:54:26 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-12 12:54:26 (GMT)
commit225625bcf34c80b3c6b7c80ca8f1360451a417b9 (patch)
tree80b0736c70983e82f6dd478e61cb8f7fefad74e6 /tests
parent21c7eb5927e4fa3d7585d68ae55f3d26a98422e6 (diff)
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.
Diffstat (limited to 'tests')
-rw-r--r--tests/shell.py6
1 files changed, 2 insertions, 4 deletions
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()