Skip to content

Commit

Permalink
Merge pull request #6750 from jmchilton/1809_tags_walkback
Browse files Browse the repository at this point in the history
[18.09] Undo auto-propagation of group tags.
  • Loading branch information
dannon committed Sep 21, 2018
2 parents 9b5045a + 7eac089 commit 0fb115e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
JOB_METRIC_PRECISION = 26
JOB_METRIC_SCALE = 7
# Tags that get automatically propagated from inputs to outputs when running jobs.
AUTO_PROPAGATED_TAGS = ["name", "group"]
AUTO_PROPAGATED_TAGS = ["name"]


class NoConverterException(Exception):
Expand Down
5 changes: 1 addition & 4 deletions test/api/test_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -2627,11 +2627,8 @@ def test_tag_auto_propagation(self):

details1 = self.dataset_populator.get_history_dataset_details(history_id, hid=3, wait=True, assert_ok=True)
tags = details1["tags"]
assert len(tags) == 3, details1
assert len(tags) == 1, details1
assert "name:treated1fb" in tags, tags
assert "group:condition:treated" in tags, tags
assert "group:type:single-read" in tags, tags
assert "machine:illumina" not in tags, tags

@skip_without_tool("collection_creates_pair")
def test_run_add_tag_on_collection_output(self):
Expand Down

0 comments on commit 0fb115e

Please sign in to comment.