mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 20:22:46 +00:00
Temporarily skip some createrepo_c tests because it coredumps
This is probably not our fault, createrepo_c coredumps on Fedora rawhide, please see the upstream issue https://github.com/rpm-software-management/createrepo_c/issues/202 Once it gets resolved, revert this commit.
This commit is contained in:
parent
a219896ba5
commit
1929f7f5a0
3 changed files with 35 additions and 0 deletions
|
@ -9,6 +9,7 @@ MAINTAINER Paul Morgan <jumanjiman@gmail.com>
|
||||||
# https://fedoraproject.org/wiki/QA/Testing_in_check
|
# https://fedoraproject.org/wiki/QA/Testing_in_check
|
||||||
# but some of the packages come from EPEL.
|
# but some of the packages come from EPEL.
|
||||||
RUN rpm -Uvh http://ftp.linux.ncsu.edu/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
|
RUN rpm -Uvh http://ftp.linux.ncsu.edu/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
|
||||||
|
RUN rpm -Uvh http://download-ib01.fedoraproject.org/pub/epel/6/x86_64/Packages/p/python-unittest2-0.5.1-3.el6.noarch.rpm
|
||||||
RUN yum -y install \
|
RUN yum -y install \
|
||||||
git \
|
git \
|
||||||
git-annex \
|
git-annex \
|
||||||
|
|
|
@ -27,6 +27,20 @@ from tito.compat import * # NOQA
|
||||||
from functional.fixture import TitoGitTestFixture, tito
|
from functional.fixture import TitoGitTestFixture, tito
|
||||||
from unit import Capture
|
from unit import Capture
|
||||||
|
|
||||||
|
|
||||||
|
# There is not many simple options to check on what distribution this is running.
|
||||||
|
# Fortunately, we only need to check for Fedora Rawhide and EPEL6, so we can
|
||||||
|
# determine it from python version. This is compatible for all distributions.
|
||||||
|
import sys
|
||||||
|
is_rawhide = sys.version_info[:2] >= (3, 8)
|
||||||
|
is_epel6 = sys.version_info[:2] == (2, 6)
|
||||||
|
|
||||||
|
if is_epel6:
|
||||||
|
import unittest2 as unittest
|
||||||
|
else:
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
EXT_SRC_PKG = "extsrc"
|
EXT_SRC_PKG = "extsrc"
|
||||||
|
|
||||||
RELEASER_CONF = """
|
RELEASER_CONF = """
|
||||||
|
@ -92,6 +106,9 @@ class FetchBuilderTests(TitoGitTestFixture):
|
||||||
self.write_file(join(self.repo_dir, '.tito/releasers.conf'),
|
self.write_file(join(self.repo_dir, '.tito/releasers.conf'),
|
||||||
RELEASER_CONF % yum_repo_dir)
|
RELEASER_CONF % yum_repo_dir)
|
||||||
|
|
||||||
|
# createrepo_c (0.15.5+ which is in rawhide) currently coredumps
|
||||||
|
# https://github.com/rpm-software-management/createrepo_c/issues/202
|
||||||
|
@unittest.skipIf(is_rawhide, "Re-enable once createrepo_c #202 gets fixed")
|
||||||
def test_with_releaser(self):
|
def test_with_releaser(self):
|
||||||
yum_repo_dir = os.path.join(self.output_dir, 'yum')
|
yum_repo_dir = os.path.join(self.output_dir, 'yum')
|
||||||
run_command('mkdir -p %s' % yum_repo_dir)
|
run_command('mkdir -p %s' % yum_repo_dir)
|
||||||
|
|
|
@ -27,6 +27,20 @@ from functional.fixture import TitoGitTestFixture, tito
|
||||||
from tito.compat import * # NOQA
|
from tito.compat import * # NOQA
|
||||||
from tito.common import run_command
|
from tito.common import run_command
|
||||||
|
|
||||||
|
|
||||||
|
# There is not many simple options to check on what distribution this is running.
|
||||||
|
# Fortunately, we only need to check for Fedora Rawhide and EPEL6, so we can
|
||||||
|
# determine it from python version. This is compatible for all distributions.
|
||||||
|
import sys
|
||||||
|
is_rawhide = sys.version_info[:2] >= (3, 8)
|
||||||
|
is_epel6 = sys.version_info[:2] == (2, 6)
|
||||||
|
|
||||||
|
if is_epel6:
|
||||||
|
import unittest2 as unittest
|
||||||
|
else:
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
PKG_NAME = "releaseme"
|
PKG_NAME = "releaseme"
|
||||||
|
|
||||||
RELEASER_CONF = """
|
RELEASER_CONF = """
|
||||||
|
@ -63,6 +77,9 @@ class YumReleaserTests(TitoGitTestFixture):
|
||||||
self.write_file(join(self.repo_dir, '.tito/releasers.conf'),
|
self.write_file(join(self.repo_dir, '.tito/releasers.conf'),
|
||||||
RELEASER_CONF % yum_repo_dir)
|
RELEASER_CONF % yum_repo_dir)
|
||||||
|
|
||||||
|
# createrepo_c (0.15.5+ which is in rawhide) currently coredumps
|
||||||
|
# https://github.com/rpm-software-management/createrepo_c/issues/202
|
||||||
|
@unittest.skipIf(is_rawhide, "Re-enable once createrepo_c #202 gets fixed")
|
||||||
def test_with_releaser(self):
|
def test_with_releaser(self):
|
||||||
yum_repo_dir = os.path.join(self.output_dir, 'yum')
|
yum_repo_dir = os.path.join(self.output_dir, 'yum')
|
||||||
run_command('mkdir -p %s' % yum_repo_dir)
|
run_command('mkdir -p %s' % yum_repo_dir)
|
||||||
|
|
Loading…
Add table
Reference in a new issue