Try to ignore the 2.0.x line of tags

This commit is contained in:
Raoul Snyman 2014-07-13 15:10:58 +02:00
parent 695079dd00
commit 63350ab6eb
1 changed files with 5 additions and 3 deletions

View File

@ -30,7 +30,7 @@
Package to test for proper bzr tags.
"""
import os
import re
from unittest import TestCase
from subprocess import Popen, PIPE
@ -52,6 +52,7 @@ TAGS = [
['2.0', '2118'],
['2.1.0', '2119']
]
TAG_SEARCH = re.compile('2\.0\.\d')
class TestBzrTags(TestCase):
@ -65,8 +66,9 @@ class TestBzrTags(TestCase):
# WHEN getting the branches tags
bzr = Popen(('bzr', 'tags', '--directory=' + path), stdout=PIPE)
stdout = bzr.communicate()[0]
tags = [line.decode('utf-8').split() for line in stdout.splitlines()]
std_out = bzr.communicate()[0]
tags = [line.decode('utf-8').split() for line in std_out.splitlines()]
tags = [t_r for t_r in tags if t_r[1] != '?' or not (t_r[1] == '?' and TAG_SEARCH.search(t_r[0]))]
# THEN the tags should match the accepted tags
self.assertEqual(TAGS, tags, 'List of tags should match')