Merge pull request #1822 from Vogtinator/check

Fix check for "no change in snapshot version"
This commit is contained in:
Stephan Kulow 2019-01-17 19:24:49 +01:00 committed by GitHub
commit f3466fc6af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -592,7 +592,7 @@ class ToTestBase(object):
can_release = ((current_snapshot is None or current_result != QA_INPROGRESS) and snapshotable)
# not overwriting
if new_snapshot == current_snapshot:
if new_snapshot == current_qa_version:
logger.debug("no change in snapshot version")
can_release = False
elif not self.all_repos_done(self.test_project):