From ce7877f2716acdb370fe7d02c602bc2f664e9343 Mon Sep 17 00:00:00 2001 From: John Lynch Date: Fri, 25 Sep 2020 14:27:27 -0500 Subject: [PATCH] exclude tests instead of include sources --- src/app/main/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/main/index.js b/src/app/main/index.js index fa7bd8e0..fb72d0aa 100644 --- a/src/app/main/index.js +++ b/src/app/main/index.js @@ -222,7 +222,7 @@ angular var packages = _.unique(_.pluck(_.values(project.nodes), 'package_name')) var all_tags = [null]; _.each(project.nodes, function(node) { - if (node.resource_type == 'model' || node.resource_type == 'source') { + if (node.resource_type != 'test') { var tags = node.tags; all_tags = _.union(all_tags, tags); };