Skip to content

Commit

Permalink
exclude tests instead of include sources
Browse files Browse the repository at this point in the history
  • Loading branch information
jplynch77 committed Sep 25, 2020
1 parent 96860c0 commit ce7877f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand Down

0 comments on commit ce7877f

Please sign in to comment.