Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 684242 - dev-python/urllib3-1.24.2 FEATURES=network-sandbox? fails tests
Summary: dev-python/urllib3-1.24.2 FEATURES=network-sandbox? fails tests
Status: RESOLVED OBSOLETE
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords: TESTFAILURE
Depends on:
Blocks:
 
Reported: 2019-04-24 10:42 UTC by Paolo Pedroni
Modified: 2022-06-16 08:40 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
urllib3-1.24.2:20190424-095831.log.gz (urllib3-1.24.2:20190424-095831.log.gz,35.69 KB, application/gzip)
2019-04-24 10:42 UTC, Paolo Pedroni
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Paolo Pedroni 2019-04-24 10:42:14 UTC
Created attachment 573940 [details]
urllib3-1.24.2:20190424-095831.log.gz

============================================================= FAILURES =============================================================
____________________________________________ TestSocks5Proxy.test_source_address_works _____________________________________________

self = <test.contrib.test_socks.TestSocks5Proxy testMethod=test_source_address_works>

    def test_source_address_works(self):
        expected_port = _get_free_port(self.host)
    
        def request_handler(listener):
            sock = listener.accept()[0]
            self.assertEqual(sock.getpeername()[0], '127.0.0.1')
            self.assertEqual(sock.getpeername()[1], expected_port)
    
            handler = handle_socks5_negotiation(sock, negotiate=False)
            addr, port = next(handler)
    
            self.assertEqual(addr, '16.17.18.19')
            self.assertEqual(port, 80)
            handler.send(True)
    
            while True:
                buf = sock.recv(65535)
                if buf.endswith(b'\r\n\r\n'):
                    break
    
            sock.sendall(b'HTTP/1.1 200 OK\r\n'
                         b'Server: SocksTestServer\r\n'
                         b'Content-Length: 0\r\n'
                         b'\r\n')
            sock.close()
    
        self._start_server(request_handler)
        proxy_url = "socks5://%s:%s" % (self.host, self.port)
        pm = socks.SOCKSProxyManager(
            proxy_url, source_address=('127.0.0.1', expected_port)
        )
        self.addCleanup(pm.clear)
>       response = pm.request('GET', 'http://16.17.18.19')

test/contrib/test_socks.py:494: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../urllib3-1.24.2-python2_7/lib/urllib3/request.py:68: in request
    **urlopen_kw)
../urllib3-1.24.2-python2_7/lib/urllib3/request.py:89: in request_encode_url
    return self.urlopen(method, url, **extra_kw)
../urllib3-1.24.2-python2_7/lib/urllib3/poolmanager.py:324: in urlopen
    response = conn.urlopen(method, u.request_uri, **kw)
../urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:667: in urlopen
    **response_kw)
../urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:667: in urlopen
    **response_kw)
../urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:667: in urlopen
    **response_kw)
../urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:638: in urlopen
    _stacktrace=sys.exc_info()[2])
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Retry(total=0, connect=None, read=None, redirect=None, status=None), method = 'GET', url = '/', response = None
error = NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba850>: Failed to establish a new connection: [Errno 98] Address already in use',)
_pool = <urllib3.contrib.socks.SOCKSHTTPConnectionPool object at 0x7fadac635710>, _stacktrace = <traceback object at 0x7fadac6065a8>

    def increment(self, method=None, url=None, response=None, error=None,
                  _pool=None, _stacktrace=None):
        """ Return a new Retry object with incremented retry counters.
    
        :param response: A response object, or None, if the server did not
            return a response.
        :type response: :class:`~urllib3.response.HTTPResponse`
        :param Exception error: An error encountered during the request, or
            None if the response was received successfully.
    
        :return: A new ``Retry`` object.
        """
        if self.total is False and error:
            # Disabled, indicate to re-raise the error.
            raise six.reraise(type(error), error, _stacktrace)
    
        total = self.total
        if total is not None:
            total -= 1
    
        connect = self.connect
        read = self.read
        redirect = self.redirect
        status_count = self.status
        cause = 'unknown'
        status = None
        redirect_location = None
    
        if error and self._is_connection_error(error):
            # Connect retry?
            if connect is False:
                raise six.reraise(type(error), error, _stacktrace)
            elif connect is not None:
                connect -= 1
    
        elif error and self._is_read_error(error):
            # Read retry?
            if read is False or not self._is_method_retryable(method):
                raise six.reraise(type(error), error, _stacktrace)
            elif read is not None:
                read -= 1
    
        elif response and response.get_redirect_location():
            # Redirect retry?
            if redirect is not None:
                redirect -= 1
            cause = 'too many redirects'
            redirect_location = response.get_redirect_location()
            status = response.status
    
        else:
            # Incrementing because of a server error like a 500 in
            # status_forcelist and a the given method is in the whitelist
            cause = ResponseError.GENERIC_ERROR
            if response and response.status:
                if status_count is not None:
                    status_count -= 1
                cause = ResponseError.SPECIFIC_ERROR.format(
                    status_code=response.status)
                status = response.status
    
        history = self.history + (RequestHistory(method, url, error, status, redirect_location),)
    
        new_retry = self.new(
            total=total,
            connect=connect, read=read, redirect=redirect, status=status_count,
            history=history)
    
        if new_retry.is_exhausted():
>           raise MaxRetryError(_pool, url, error or ResponseError(cause))
E           MaxRetryError: SOCKSHTTPConnectionPool(host='16.17.18.19', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba850>: Failed to establish a new connection: [Errno 98] Address already in use',))

../urllib3-1.24.2-python2_7/lib/urllib3/util/retry.py:399: MaxRetryError
------------------------------------------------------- Captured stdout call -------------------------------------------------------
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac635a90>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac635a90>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba7d0>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba7d0>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba950>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba950>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
-------------------------------------------------------- Captured log call ---------------------------------------------------------
connectionpool.py          662 WARNING  Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac635a90>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
connectionpool.py          662 WARNING  Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba7d0>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
connectionpool.py          662 WARNING  Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.contrib.socks.SOCKSConnection object at 0x7fadac6ba950>: Failed to establish a new connection: [Errno 98] Address already in use',)': /
______________________________________________ TestConnectionPool.test_source_address ______________________________________________

self = <test.with_dummyserver.test_connectionpool.TestConnectionPool testMethod=test_source_address>

    def test_source_address(self):
        for addr, is_ipv6 in VALID_SOURCE_ADDRESSES:
            if is_ipv6 and not HAS_IPV6_AND_DNS:
                warnings.warn("No IPv6 support: skipping.",
                              NoIPv6Warning)
                continue
            pool = HTTPConnectionPool(self.host, self.port,
                                      source_address=addr, retries=False)
            self.addCleanup(pool.close)
            r = pool.request('GET', '/source_address')
>           self.assertEqual(r.data, b(addr[0]))
E           AssertionError: '::1' != '127.0.0.1'

test/with_dummyserver/test_connectionpool.py:667: AssertionError
___________________________________________ TestConnectionPool.test_source_address_error ___________________________________________

self = <test.with_dummyserver.test_connectionpool.TestConnectionPool testMethod=test_source_address_error>

    def test_source_address_error(self):
        for addr in INVALID_SOURCE_ADDRESSES:
            pool = HTTPConnectionPool(self.host, self.port, source_address=addr, retries=False)
            # FIXME: This assert flakes sometimes. Not sure why.
            self.assertRaises(NewConnectionError,
                              pool.request,
>                             'GET', '/source_address?{0}'.format(addr))

test/with_dummyserver/test_connectionpool.py:675: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../urllib3-1.24.2-python2_7/lib/urllib3/request.py:68: in request
    **urlopen_kw)
../urllib3-1.24.2-python2_7/lib/urllib3/request.py:89: in request_encode_url
    return self.urlopen(method, url, **extra_kw)
../urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:638: in urlopen
    _stacktrace=sys.exc_info()[2])
../urllib3-1.24.2-python2_7/lib/urllib3/util/retry.py:344: in increment
    raise six.reraise(type(error), error, _stacktrace)
../urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:600: in urlopen
    chunked=chunked)
../urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:377: in _make_request
    httplib_response = conn.getresponse(buffering=True)
/usr/lib64/python2.7/httplib.py:1121: in getresponse
    response.begin()
/usr/lib64/python2.7/httplib.py:438: in begin
    version, status, reason = self._read_status()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <httplib.HTTPResponse instance at 0x7fadac70aea8>

    def _read_status(self):
        # Initialize with Simple-Response defaults
        line = self.fp.readline(_MAXLINE + 1)
        if len(line) > _MAXLINE:
            raise LineTooLong("header line")
        if self.debuglevel > 0:
            print "reply:", repr(line)
        if not line:
            # Presumably, the server closed the connection before
            # sending a valid response.
>           raise BadStatusLine(line)
E           ProtocolError: ('Connection aborted.', BadStatusLine("''",))

/usr/lib64/python2.7/httplib.py:402: ProtocolError
===Flaky Test Report===


===End Flaky Test Report===
========================================================= warnings summary =========================================================
test/test_ssl.py::test_context_sni_with_ip_address[False-www.python.org-False]
  /var/tmp/portage/dev-python/urllib3-1.24.2/work/urllib3-1.24.2-python2_7/lib/urllib3/util/ssl_.py:357: SNIMissingWarning: An HTTPS request has been made, but the SNI (Server Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
    SNIMissingWarning

test/contrib/test_pyopenssl.py::TestHTTPS::test_client_intermediate
  /var/tmp/portage/dev-python/urllib3-1.24.2/work/urllib3-1.24.2-python2_7/lib/urllib3/connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
    InsecureRequestWarning)

test/contrib/test_pyopenssl.py::TestHTTPS_IPv6Addr::test_strip_square_brackets_before_validating
  /var/tmp/portage/dev-python/urllib3-1.24.2/work/urllib3-1.24.2-python2_7/lib/urllib3/connection.py:362: SubjectAltNameWarning: Certificate for ::1 has no `subjectAltName`, falling back to check for a `commonName` for now. This feature is being removed by major browsers and deprecated by RFC 2818. (See https://github.com/shazow/urllib3/issues/497 for details.)
    SubjectAltNameWarning

test/contrib/test_socks.py::TestSocks5Proxy::test_basic_request
  /var/tmp/portage/dev-python/urllib3-1.24.2/work/urllib3-1.24.2/dummyserver/server.py:136: NoIPv6Warning: No IPv6 support. Falling back to IPv4.
    NoIPv6Warning)

-- Docs: https://docs.pytest.org/en/latest/warnings.html
================================== 3 failed, 725 passed, 63 skipped, 4 warnings in 22.97 seconds ===================================
 * ERROR: dev-python/urllib3-1.24.2::gentoo failed (test phase):
 *   Tests fail with python2.7
Comment 1 Paolo Pedroni 2019-04-24 10:42:43 UTC
# emerge --info =dev-python/urllib3-1.24.2
Portage 2.3.62 (python 3.6.5-final-0, default/linux/amd64/17.1/desktop/plasma/systemd, gcc-8.3.0, glibc-2.28-r6, 4.19.27-gentoo-r1 x86_64)
=================================================================
                         System Settings
=================================================================
System uname: Linux-4.19.27-gentoo-r1-x86_64-Intel-R-_Pentium-R-_CPU_G640_@_2.80GHz-with-gentoo-2.6
KiB Mem:    12144628 total,    756824 free
KiB Swap:    8388604 total,   8313596 free
Timestamp of repository gentoo: Wed, 24 Apr 2019 08:30:01 +0000
Head commit of repository gentoo: 8b4d41dcc8cec461e6e10e1a92157d6d1d22c794
sh dash 0.5.9.1-r3
ld GNU gold (Gentoo 2.31.1 p5 2.31.1) 1.16
distcc 3.3.2 x86_64-pc-linux-gnu [enabled]
ccache version 3.3.4 [disabled]
app-shells/bash:          4.4_p23-r1::gentoo
dev-java/java-config:     2.2.0-r4::gentoo
dev-lang/perl:            5.26.2::gentoo
dev-lang/python:          2.7.15::gentoo, 3.6.5::gentoo
dev-util/ccache:          3.3.4-r1::gentoo
dev-util/cmake:           3.9.6::gentoo
dev-util/pkgconfig:       0.29.2::gentoo
sys-apps/baselayout:      2.6-r1::gentoo
sys-apps/sandbox:         2.13::gentoo
sys-devel/autoconf:       2.13-r1::gentoo, 2.69-r4::gentoo
sys-devel/automake:       1.16.1-r1::gentoo
sys-devel/binutils:       2.31.1-r4::gentoo
sys-devel/gcc:            8.3.0-r1::gentoo
sys-devel/gcc-config:     2.0::gentoo
sys-devel/libtool:        2.4.6-r3::gentoo
sys-devel/make:           4.2.1-r4::gentoo
sys-kernel/linux-headers: 4.17::gentoo (virtual/os-headers)
sys-libs/glibc:           2.28-r6::gentoo
Repositories:

gentoo
    location: /usr/portage
    sync-type: rsync
    sync-uri: rsync://rsync.gentoo.org/gentoo-portage
    priority: -1000
    sync-rsync-extra-opts: 
    sync-rsync-verify-max-age: 24
    sync-rsync-verify-metamanifest: yes
    sync-rsync-verify-jobs: 1

x-portage
    location: /usr/local/portage
    masters: gentoo
    priority: 0

ACCEPT_KEYWORDS="amd64"
ACCEPT_LICENSE="* -@EULA"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-O2 -pipe -frecord-gcc-switches -march=sandybridge -mno-aes -mno-avx -mno-xsave -mno-xsaveopt -flto=2"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/lib64/libreoffice/program/sofficerc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-O2 -pipe -frecord-gcc-switches -march=sandybridge -mno-aes -mno-avx -mno-xsave -mno-xsaveopt -flto=2"
DISTDIR="/usr/portage/distfiles"
EMERGE_DEFAULT_OPTS="--keep-going y --with-bdeps y"
ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR"
FCFLAGS="-O2 -pipe -frecord-gcc-switches -march=sandybridge -mno-aes -mno-avx -mno-xsave -mno-xsaveopt -flto=2"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs cgroup compress-build-logs config-protect-if-modified distcc distlocks ebuild-locks ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned sandbox sfperms sign split-elog split-log strict strict-keepdir test unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-O2 -pipe -frecord-gcc-switches -march=sandybridge -mno-aes -mno-avx -mno-xsave -mno-xsaveopt -flto=2"
GENTOO_MIRRORS="http://gentoo.mirrors.ovh.net/gentoo-distfiles/ https://mirrors.evowise.com/gentoo/ http://mirror.eu.oneandone.net/linux/distributions/gentoo/gentoo/"
LANG="it_IT.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,--hash-style=gnu -Wl,--sort-common -flto=2"
LINGUAS="it it_IT"
MAKEOPTS="-j15 -l2"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
USE="X a52 aac aalib acl acpi activities adns alsa amd64 ao audiofile bash-completion bluetooth branding bzip2 cairo caps cdda cddb cdparanoia cdr cli crypt css cups curl cxx dbus declarative dga djvu dri dts dvd dvdr emboss encode exif expat fbcon ffmpeg fftw flac fontconfig foomaticdb fortran ftp gd gdbm geoip gif gimp glamor gmp gnutls gphoto2 gpm graphviz gtk handbook iconv icu idn imagemagick imlib ipv6 java javascript jbig jpeg jpeg2k kde kipi kwallet lame lcms libass libcaca libnotify libsamplerate libtirpc lm_sensors lua lzma lzo mad mmap mng mp3 mp4 mpeg mplayer multilib musicbrainz ncurses nls nptl nsplugin offensive ogg openal opengl openmp pam pango pcre pdf phonon plasma png policykit postscript ppds pulseaudio qml qt5 rdesktop readline recode samba sctp sdl seccomp sndfile sockets speex spell sqlite ssl startup-notification subversion svg symlink syslog systemd sysvipc taglib test theora threads tidy tiff truetype udev udisks unicode upower usb vaapi vcd vim-syntax vnc vorbis wayland widgets win32codecs wmf wxwidgets x264 xattr xcb xcomposite xine xml xpm xscreensaver xv xvid yahoo zlib" ABI_X86="64" ALSA_CARDS="hda-intel virmidi" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" CAMERAS="kodak ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext pclmul popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" CURL_SSL="gnutls" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput" KERNEL="linux" L10N="it en" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="nlpsolver" NETBEANS_MODULES="apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6 php7-1" POSTGRES_TARGETS="postgres9_5 postgres10" PYTHON_SINGLE_TARGET="python3_6" PYTHON_TARGETS="python2_7 python3_6 pypy pypy3" RUBY_TARGETS="ruby24" USERLAND="GNU" VIDEO_CARDS="intel i965" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CC, CPPFLAGS, CTARGET, CXX, INSTALL_MASK, LC_ALL, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS

# emerge -1pqv =dev-python/urllib3-1.24.2
[ebuild     U ] dev-python/urllib3-1.24.2 [1.22] USE="test* -doc" PYTHON_TARGETS="pypy pypy3 python2_7 python3_6 -python3_5 (-python3_7)"
Comment 2 Paolo Pedroni 2019-04-24 13:21:49 UTC
The tests fail with FEATURES=-network-sandbox, too.
Comment 3 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2022-06-16 08:40:42 UTC
old version.