Remove reference to docker tests.

Change-Id: Ia00b7335b20c1ada30ea8b2f44020a7fdec77688
diff --git a/jenkins/jobs/jobs.bzl b/jenkins/jobs/jobs.bzl
index ae91e8d..2c5e562 100644
--- a/jenkins/jobs/jobs.bzl
+++ b/jenkins/jobs/jobs.bzl
@@ -1,8 +1,3 @@
-def _is_testing(job):
-  # We include all test but the docker ones (because they need access to the
-  # Docker server).
-  return not "docker" in job and job != "continuous-integration"
-
 def job_lists(name = "jobs", visibility = None):
   jobs = native.existing_rules()
 
@@ -11,9 +6,3 @@
     srcs = [j for j in jobs if j.endswith("/all")],
     visibility = visibility,
   )
-
-  native.filegroup(
-    name = "test-" + name,
-    srcs = [j for j in jobs if j.endswith("/test") and _is_testing(j[:-5])],
-    visibility = visibility,
-  )