Skip to content

Add a docstring to "bootstrap_django"

Sign in for the full log view
GitHub Actions / Test results failed May 23, 2023 in 0s

7 errors, 15 fail, 96 skipped, 3 115 pass in 14m 2s

     10 files       10 suites   14m 2s ⏱️
3 233 tests 3 115 ✔️   96 💤 15  7 🔥
9 160 runs  8 820 ✔️ 288 💤 45  7 🔥

Results for commit 10aad78.

Annotations

Check failure on line 0 in tests.functional.arnold_test

See this annotation in the file changed.

@github-actions github-actions / Test results

test_title_should_contain_detentions (tests.functional.arnold_test) with error

artifacts/test-reports/functional-py37-django32/functional-results.xml
Raw output
request = <SubRequest 'driver' for <Function test_title_should_contain_detentions>>
driver_class = <class 'selenium.webdriver.chrome.webdriver.WebDriver'>
driver_kwargs = {'desired_capabilities': {'browserName': 'chrome', 'goog:chromeOptions': {'args': ['start-maximized', 'enable-automati...ct at 0x7f0b1c1acc10>, 'service_log_path': '/tmp/pytest-of-runner/pytest-1/test_title_should_contain_dete0/driver.log'}

    @pytest.fixture
    def driver(request, driver_class, driver_kwargs):
        """Returns a WebDriver instance based on options and capabilities"""
    
        retries = int(request.config.getini("max_driver_init_attempts"))
        for retry in Retrying(
>           stop=stop_after_attempt(retries), wait=wait_exponential(), reraise=True
        ):

.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:204: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:394: in __iter__
    do = self.iter(retry_state=retry_state)
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:372: in iter
    raise retry_exc.reraise()
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:189: in reraise
    raise self.last_attempt.result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:428: in result
    return self.__get_result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:384: in __get_result
    raise self._exception
.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:210: in driver
    driver = driver_class(**driver_kwargs)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py:81: in __init__
    desired_capabilities=desired_capabilities)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:157: in __init__
    self.start_session(capabilities, browser_profile)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:252: in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:319: in execute
    response = self.command_executor.execute(driver_command, params)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:374: in execute
    return self._request(command_info[0], url, body=data)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:397: in _request
    resp = self._conn.request(method, url, body=body, headers=headers)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:119: in request
    method, url, fields=fields, headers=headers, **urlopen_kw
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:217: in request_encode_body
    return self.urlopen(method, url, **extra_kw)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:422: in urlopen
    conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:303: in connection_from_host
    return self.connection_from_context(request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:328: in connection_from_context
    return self.connection_from_pool_key(pool_key, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:351: in connection_from_pool_key
    pool = self._new_pool(scheme, host, port, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:265: in _new_pool
    return pool_cls(host, port, **request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/connectionpool.py:196: in __init__
    timeout = Timeout.from_float(timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:190: in from_float
    return Timeout(read=timeout, connect=timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:119: in __init__
    self._connect = self._validate_timeout(connect, "connect")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'urllib3.util.timeout.Timeout'>
value = <object object at 0x7f0b1e4612e0>, name = 'connect'

    @classmethod
    def _validate_timeout(cls, value: _TYPE_TIMEOUT, name: str) -> _TYPE_TIMEOUT:
        """Check that a timeout attribute is valid.
    
        :param value: The timeout value to validate
        :param name: The name of the timeout attribute to validate. This is
            used to specify in error messages.
        :return: The validated and casted version of the given value.
        :raises ValueError: If it is a numeric value less than or equal to
            zero, or the type is not an integer, float, or None.
        """
        if value is None or value is _DEFAULT_TIMEOUT:
            return value
    
        if isinstance(value, bool):
            raise ValueError(
                "Timeout cannot be a boolean value. It must "
                "be an int, float or None."
            )
        try:
            float(value)
        except (TypeError, ValueError):
            raise ValueError(
                "Timeout value %s was %s, but it must be an "
                "int, float or None." % (name, value)
>           ) from None
E           ValueError: Timeout value connect was <object object at 0x7f0b1e4612e0>, but it must be an int, float or None.

.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:159: ValueError

Check failure on line 0 in tests.functional.geomap_test

See this annotation in the file changed.

@github-actions github-actions / Test results

test_geomap_loaded (tests.functional.geomap_test) with error

artifacts/test-reports/functional-py37-django32/functional-results.xml
Raw output
request = <SubRequest 'driver' for <Function test_geomap_loaded>>
driver_class = <class 'selenium.webdriver.chrome.webdriver.WebDriver'>
driver_kwargs = {'desired_capabilities': {'browserName': 'chrome', 'goog:chromeOptions': {'args': ['start-maximized', 'enable-automati...Options object at 0x7f0b1bc90390>, 'service_log_path': '/tmp/pytest-of-runner/pytest-1/test_geomap_loaded0/driver.log'}

    @pytest.fixture
    def driver(request, driver_class, driver_kwargs):
        """Returns a WebDriver instance based on options and capabilities"""
    
        retries = int(request.config.getini("max_driver_init_attempts"))
        for retry in Retrying(
>           stop=stop_after_attempt(retries), wait=wait_exponential(), reraise=True
        ):

.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:204: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:394: in __iter__
    do = self.iter(retry_state=retry_state)
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:372: in iter
    raise retry_exc.reraise()
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:189: in reraise
    raise self.last_attempt.result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:428: in result
    return self.__get_result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:384: in __get_result
    raise self._exception
.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:210: in driver
    driver = driver_class(**driver_kwargs)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py:81: in __init__
    desired_capabilities=desired_capabilities)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:157: in __init__
    self.start_session(capabilities, browser_profile)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:252: in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:319: in execute
    response = self.command_executor.execute(driver_command, params)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:374: in execute
    return self._request(command_info[0], url, body=data)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:397: in _request
    resp = self._conn.request(method, url, body=body, headers=headers)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:119: in request
    method, url, fields=fields, headers=headers, **urlopen_kw
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:217: in request_encode_body
    return self.urlopen(method, url, **extra_kw)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:422: in urlopen
    conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:303: in connection_from_host
    return self.connection_from_context(request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:328: in connection_from_context
    return self.connection_from_pool_key(pool_key, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:351: in connection_from_pool_key
    pool = self._new_pool(scheme, host, port, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:265: in _new_pool
    return pool_cls(host, port, **request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/connectionpool.py:196: in __init__
    timeout = Timeout.from_float(timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:190: in from_float
    return Timeout(read=timeout, connect=timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:119: in __init__
    self._connect = self._validate_timeout(connect, "connect")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'urllib3.util.timeout.Timeout'>
value = <object object at 0x7f0b1e4612e0>, name = 'connect'

    @classmethod
    def _validate_timeout(cls, value: _TYPE_TIMEOUT, name: str) -> _TYPE_TIMEOUT:
        """Check that a timeout attribute is valid.
    
        :param value: The timeout value to validate
        :param name: The name of the timeout attribute to validate. This is
            used to specify in error messages.
        :return: The validated and casted version of the given value.
        :raises ValueError: If it is a numeric value less than or equal to
            zero, or the type is not an integer, float, or None.
        """
        if value is None or value is _DEFAULT_TIMEOUT:
            return value
    
        if isinstance(value, bool):
            raise ValueError(
                "Timeout cannot be a boolean value. It must "
                "be an int, float or None."
            )
        try:
            float(value)
        except (TypeError, ValueError):
            raise ValueError(
                "Timeout value %s was %s, but it must be an "
                "int, float or None." % (name, value)
>           ) from None
E           ValueError: Timeout value connect was <object object at 0x7f0b1e4612e0>, but it must be an int, float or None.

.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:159: ValueError

Check failure on line 0 in tests.functional.navbar_test

See this annotation in the file changed.

@github-actions github-actions / Test results

test_simple_ip_search_should_return_result (tests.functional.navbar_test) with error

artifacts/test-reports/functional-py37-django32/functional-results.xml
Raw output
request = <SubRequest 'driver' for <Function test_simple_ip_search_should_return_result>>
driver_class = <class 'selenium.webdriver.chrome.webdriver.WebDriver'>
driver_kwargs = {'desired_capabilities': {'browserName': 'chrome', 'goog:chromeOptions': {'args': ['start-maximized', 'enable-automati...ct at 0x7f0b1bbd4c50>, 'service_log_path': '/tmp/pytest-of-runner/pytest-1/test_simple_ip_search_should_r0/driver.log'}

    @pytest.fixture
    def driver(request, driver_class, driver_kwargs):
        """Returns a WebDriver instance based on options and capabilities"""
    
        retries = int(request.config.getini("max_driver_init_attempts"))
        for retry in Retrying(
>           stop=stop_after_attempt(retries), wait=wait_exponential(), reraise=True
        ):

.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:204: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:394: in __iter__
    do = self.iter(retry_state=retry_state)
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:372: in iter
    raise retry_exc.reraise()
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:189: in reraise
    raise self.last_attempt.result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:428: in result
    return self.__get_result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:384: in __get_result
    raise self._exception
.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:210: in driver
    driver = driver_class(**driver_kwargs)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py:81: in __init__
    desired_capabilities=desired_capabilities)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:157: in __init__
    self.start_session(capabilities, browser_profile)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:252: in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:319: in execute
    response = self.command_executor.execute(driver_command, params)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:374: in execute
    return self._request(command_info[0], url, body=data)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:397: in _request
    resp = self._conn.request(method, url, body=body, headers=headers)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:119: in request
    method, url, fields=fields, headers=headers, **urlopen_kw
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:217: in request_encode_body
    return self.urlopen(method, url, **extra_kw)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:422: in urlopen
    conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:303: in connection_from_host
    return self.connection_from_context(request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:328: in connection_from_context
    return self.connection_from_pool_key(pool_key, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:351: in connection_from_pool_key
    pool = self._new_pool(scheme, host, port, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:265: in _new_pool
    return pool_cls(host, port, **request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/connectionpool.py:196: in __init__
    timeout = Timeout.from_float(timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:190: in from_float
    return Timeout(read=timeout, connect=timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:119: in __init__
    self._connect = self._validate_timeout(connect, "connect")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'urllib3.util.timeout.Timeout'>
value = <object object at 0x7f0b1e4612e0>, name = 'connect'

    @classmethod
    def _validate_timeout(cls, value: _TYPE_TIMEOUT, name: str) -> _TYPE_TIMEOUT:
        """Check that a timeout attribute is valid.
    
        :param value: The timeout value to validate
        :param name: The name of the timeout attribute to validate. This is
            used to specify in error messages.
        :return: The validated and casted version of the given value.
        :raises ValueError: If it is a numeric value less than or equal to
            zero, or the type is not an integer, float, or None.
        """
        if value is None or value is _DEFAULT_TIMEOUT:
            return value
    
        if isinstance(value, bool):
            raise ValueError(
                "Timeout cannot be a boolean value. It must "
                "be an int, float or None."
            )
        try:
            float(value)
        except (TypeError, ValueError):
            raise ValueError(
                "Timeout value %s was %s, but it must be an "
                "int, float or None." % (name, value)
>           ) from None
E           ValueError: Timeout value connect was <object object at 0x7f0b1e4612e0>, but it must be an int, float or None.

.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:159: ValueError

Check failure on line 0 in tests.functional.netmap_test

See this annotation in the file changed.

@github-actions github-actions / Test results

test_netmap_index_should_not_have_syntax_errors (tests.functional.netmap_test) with error

artifacts/test-reports/functional-py37-django32/functional-results.xml
Raw output
request = <SubRequest 'driver' for <Function test_netmap_index_should_not_have_syntax_errors>>
driver_class = <class 'selenium.webdriver.chrome.webdriver.WebDriver'>
driver_kwargs = {'desired_capabilities': {'browserName': 'chrome', 'goog:chromeOptions': {'args': ['start-maximized', 'enable-automati...ct at 0x7f0b1bc54650>, 'service_log_path': '/tmp/pytest-of-runner/pytest-1/test_netmap_index_should_not_h0/driver.log'}

    @pytest.fixture
    def driver(request, driver_class, driver_kwargs):
        """Returns a WebDriver instance based on options and capabilities"""
    
        retries = int(request.config.getini("max_driver_init_attempts"))
        for retry in Retrying(
>           stop=stop_after_attempt(retries), wait=wait_exponential(), reraise=True
        ):

.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:204: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:394: in __iter__
    do = self.iter(retry_state=retry_state)
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:372: in iter
    raise retry_exc.reraise()
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:189: in reraise
    raise self.last_attempt.result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:428: in result
    return self.__get_result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:384: in __get_result
    raise self._exception
.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:210: in driver
    driver = driver_class(**driver_kwargs)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py:81: in __init__
    desired_capabilities=desired_capabilities)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:157: in __init__
    self.start_session(capabilities, browser_profile)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:252: in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:319: in execute
    response = self.command_executor.execute(driver_command, params)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:374: in execute
    return self._request(command_info[0], url, body=data)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:397: in _request
    resp = self._conn.request(method, url, body=body, headers=headers)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:119: in request
    method, url, fields=fields, headers=headers, **urlopen_kw
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:217: in request_encode_body
    return self.urlopen(method, url, **extra_kw)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:422: in urlopen
    conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:303: in connection_from_host
    return self.connection_from_context(request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:328: in connection_from_context
    return self.connection_from_pool_key(pool_key, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:351: in connection_from_pool_key
    pool = self._new_pool(scheme, host, port, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:265: in _new_pool
    return pool_cls(host, port, **request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/connectionpool.py:196: in __init__
    timeout = Timeout.from_float(timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:190: in from_float
    return Timeout(read=timeout, connect=timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:119: in __init__
    self._connect = self._validate_timeout(connect, "connect")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'urllib3.util.timeout.Timeout'>
value = <object object at 0x7f0b1e4612e0>, name = 'connect'

    @classmethod
    def _validate_timeout(cls, value: _TYPE_TIMEOUT, name: str) -> _TYPE_TIMEOUT:
        """Check that a timeout attribute is valid.
    
        :param value: The timeout value to validate
        :param name: The name of the timeout attribute to validate. This is
            used to specify in error messages.
        :return: The validated and casted version of the given value.
        :raises ValueError: If it is a numeric value less than or equal to
            zero, or the type is not an integer, float, or None.
        """
        if value is None or value is _DEFAULT_TIMEOUT:
            return value
    
        if isinstance(value, bool):
            raise ValueError(
                "Timeout cannot be a boolean value. It must "
                "be an int, float or None."
            )
        try:
            float(value)
        except (TypeError, ValueError):
            raise ValueError(
                "Timeout value %s was %s, but it must be an "
                "int, float or None." % (name, value)
>           ) from None
E           ValueError: Timeout value connect was <object object at 0x7f0b1e4612e0>, but it must be an int, float or None.

.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:159: ValueError

Check failure on line 0 in tests.functional.room_test

See this annotation in the file changed.

@github-actions github-actions / Test results

test_room_image_upload (tests.functional.room_test) with error

artifacts/test-reports/functional-py37-django32/functional-results.xml
Raw output
request = <SubRequest 'driver' for <Function test_room_image_upload>>
driver_class = <class 'selenium.webdriver.chrome.webdriver.WebDriver'>
driver_kwargs = {'desired_capabilities': {'browserName': 'chrome', 'goog:chromeOptions': {'args': ['start-maximized', 'enable-automati...ons object at 0x7f0b1be125d0>, 'service_log_path': '/tmp/pytest-of-runner/pytest-1/test_room_image_upload0/driver.log'}

    @pytest.fixture
    def driver(request, driver_class, driver_kwargs):
        """Returns a WebDriver instance based on options and capabilities"""
    
        retries = int(request.config.getini("max_driver_init_attempts"))
        for retry in Retrying(
>           stop=stop_after_attempt(retries), wait=wait_exponential(), reraise=True
        ):

.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:204: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:394: in __iter__
    do = self.iter(retry_state=retry_state)
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:372: in iter
    raise retry_exc.reraise()
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:189: in reraise
    raise self.last_attempt.result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:428: in result
    return self.__get_result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:384: in __get_result
    raise self._exception
.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:210: in driver
    driver = driver_class(**driver_kwargs)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py:81: in __init__
    desired_capabilities=desired_capabilities)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:157: in __init__
    self.start_session(capabilities, browser_profile)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:252: in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:319: in execute
    response = self.command_executor.execute(driver_command, params)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:374: in execute
    return self._request(command_info[0], url, body=data)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:397: in _request
    resp = self._conn.request(method, url, body=body, headers=headers)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:119: in request
    method, url, fields=fields, headers=headers, **urlopen_kw
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:217: in request_encode_body
    return self.urlopen(method, url, **extra_kw)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:422: in urlopen
    conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:303: in connection_from_host
    return self.connection_from_context(request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:328: in connection_from_context
    return self.connection_from_pool_key(pool_key, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:351: in connection_from_pool_key
    pool = self._new_pool(scheme, host, port, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:265: in _new_pool
    return pool_cls(host, port, **request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/connectionpool.py:196: in __init__
    timeout = Timeout.from_float(timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:190: in from_float
    return Timeout(read=timeout, connect=timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:119: in __init__
    self._connect = self._validate_timeout(connect, "connect")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'urllib3.util.timeout.Timeout'>
value = <object object at 0x7f0b1e4612e0>, name = 'connect'

    @classmethod
    def _validate_timeout(cls, value: _TYPE_TIMEOUT, name: str) -> _TYPE_TIMEOUT:
        """Check that a timeout attribute is valid.
    
        :param value: The timeout value to validate
        :param name: The name of the timeout attribute to validate. This is
            used to specify in error messages.
        :return: The validated and casted version of the given value.
        :raises ValueError: If it is a numeric value less than or equal to
            zero, or the type is not an integer, float, or None.
        """
        if value is None or value is _DEFAULT_TIMEOUT:
            return value
    
        if isinstance(value, bool):
            raise ValueError(
                "Timeout cannot be a boolean value. It must "
                "be an int, float or None."
            )
        try:
            float(value)
        except (TypeError, ValueError):
            raise ValueError(
                "Timeout value %s was %s, but it must be an "
                "int, float or None." % (name, value)
>           ) from None
E           ValueError: Timeout value connect was <object object at 0x7f0b1e4612e0>, but it must be an int, float or None.

.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:159: ValueError

Check failure on line 0 in tests.functional.status_test

See this annotation in the file changed.

@github-actions github-actions / Test results

test_panel_should_toggle_when_clicked (tests.functional.status_test) with error

artifacts/test-reports/functional-py37-django32/functional-results.xml
Raw output
request = <SubRequest 'driver' for <Function test_panel_should_toggle_when_clicked>>
driver_class = <class 'selenium.webdriver.chrome.webdriver.WebDriver'>
driver_kwargs = {'desired_capabilities': {'browserName': 'chrome', 'goog:chromeOptions': {'args': ['start-maximized', 'enable-automati...ct at 0x7f0b1bc7ff10>, 'service_log_path': '/tmp/pytest-of-runner/pytest-1/test_panel_should_toggle_when_0/driver.log'}

    @pytest.fixture
    def driver(request, driver_class, driver_kwargs):
        """Returns a WebDriver instance based on options and capabilities"""
    
        retries = int(request.config.getini("max_driver_init_attempts"))
        for retry in Retrying(
>           stop=stop_after_attempt(retries), wait=wait_exponential(), reraise=True
        ):

.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:204: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:394: in __iter__
    do = self.iter(retry_state=retry_state)
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:372: in iter
    raise retry_exc.reraise()
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:189: in reraise
    raise self.last_attempt.result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:428: in result
    return self.__get_result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:384: in __get_result
    raise self._exception
.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:210: in driver
    driver = driver_class(**driver_kwargs)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py:81: in __init__
    desired_capabilities=desired_capabilities)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:157: in __init__
    self.start_session(capabilities, browser_profile)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:252: in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:319: in execute
    response = self.command_executor.execute(driver_command, params)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:374: in execute
    return self._request(command_info[0], url, body=data)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:397: in _request
    resp = self._conn.request(method, url, body=body, headers=headers)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:119: in request
    method, url, fields=fields, headers=headers, **urlopen_kw
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:217: in request_encode_body
    return self.urlopen(method, url, **extra_kw)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:422: in urlopen
    conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:303: in connection_from_host
    return self.connection_from_context(request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:328: in connection_from_context
    return self.connection_from_pool_key(pool_key, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:351: in connection_from_pool_key
    pool = self._new_pool(scheme, host, port, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:265: in _new_pool
    return pool_cls(host, port, **request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/connectionpool.py:196: in __init__
    timeout = Timeout.from_float(timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:190: in from_float
    return Timeout(read=timeout, connect=timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:119: in __init__
    self._connect = self._validate_timeout(connect, "connect")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'urllib3.util.timeout.Timeout'>
value = <object object at 0x7f0b1e4612e0>, name = 'connect'

    @classmethod
    def _validate_timeout(cls, value: _TYPE_TIMEOUT, name: str) -> _TYPE_TIMEOUT:
        """Check that a timeout attribute is valid.
    
        :param value: The timeout value to validate
        :param name: The name of the timeout attribute to validate. This is
            used to specify in error messages.
        :return: The validated and casted version of the given value.
        :raises ValueError: If it is a numeric value less than or equal to
            zero, or the type is not an integer, float, or None.
        """
        if value is None or value is _DEFAULT_TIMEOUT:
            return value
    
        if isinstance(value, bool):
            raise ValueError(
                "Timeout cannot be a boolean value. It must "
                "be an int, float or None."
            )
        try:
            float(value)
        except (TypeError, ValueError):
            raise ValueError(
                "Timeout value %s was %s, but it must be an "
                "int, float or None." % (name, value)
>           ) from None
E           ValueError: Timeout value connect was <object object at 0x7f0b1e4612e0>, but it must be an int, float or None.

.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:159: ValueError

Check failure on line 0 in tests.functional.status_test

See this annotation in the file changed.

@github-actions github-actions / Test results

test_remember_last_panel_state (tests.functional.status_test) with error

artifacts/test-reports/functional-py37-django32/functional-results.xml
Raw output
request = <SubRequest 'driver' for <Function test_remember_last_panel_state>>
driver_class = <class 'selenium.webdriver.chrome.webdriver.WebDriver'>
driver_kwargs = {'desired_capabilities': {'browserName': 'chrome', 'goog:chromeOptions': {'args': ['start-maximized', 'enable-automati...ct at 0x7f0b1bf11190>, 'service_log_path': '/tmp/pytest-of-runner/pytest-1/test_remember_last_panel_state0/driver.log'}

    @pytest.fixture
    def driver(request, driver_class, driver_kwargs):
        """Returns a WebDriver instance based on options and capabilities"""
    
        retries = int(request.config.getini("max_driver_init_attempts"))
        for retry in Retrying(
>           stop=stop_after_attempt(retries), wait=wait_exponential(), reraise=True
        ):

.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:204: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:394: in __iter__
    do = self.iter(retry_state=retry_state)
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:372: in iter
    raise retry_exc.reraise()
.tox/functional-py37-django32/lib/python3.7/site-packages/tenacity/__init__.py:189: in reraise
    raise self.last_attempt.result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:428: in result
    return self.__get_result()
/opt/hostedtoolcache/Python/3.7.16/x64/lib/python3.7/concurrent/futures/_base.py:384: in __get_result
    raise self._exception
.tox/functional-py37-django32/lib/python3.7/site-packages/pytest_selenium/pytest_selenium.py:210: in driver
    driver = driver_class(**driver_kwargs)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py:81: in __init__
    desired_capabilities=desired_capabilities)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:157: in __init__
    self.start_session(capabilities, browser_profile)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:252: in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py:319: in execute
    response = self.command_executor.execute(driver_command, params)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:374: in execute
    return self._request(command_info[0], url, body=data)
.tox/functional-py37-django32/lib/python3.7/site-packages/selenium/webdriver/remote/remote_connection.py:397: in _request
    resp = self._conn.request(method, url, body=body, headers=headers)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:119: in request
    method, url, fields=fields, headers=headers, **urlopen_kw
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/_request_methods.py:217: in request_encode_body
    return self.urlopen(method, url, **extra_kw)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:422: in urlopen
    conn = self.connection_from_host(u.host, port=u.port, scheme=u.scheme)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:303: in connection_from_host
    return self.connection_from_context(request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:328: in connection_from_context
    return self.connection_from_pool_key(pool_key, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:351: in connection_from_pool_key
    pool = self._new_pool(scheme, host, port, request_context=request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/poolmanager.py:265: in _new_pool
    return pool_cls(host, port, **request_context)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/connectionpool.py:196: in __init__
    timeout = Timeout.from_float(timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:190: in from_float
    return Timeout(read=timeout, connect=timeout)
.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:119: in __init__
    self._connect = self._validate_timeout(connect, "connect")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'urllib3.util.timeout.Timeout'>
value = <object object at 0x7f0b1e4612e0>, name = 'connect'

    @classmethod
    def _validate_timeout(cls, value: _TYPE_TIMEOUT, name: str) -> _TYPE_TIMEOUT:
        """Check that a timeout attribute is valid.
    
        :param value: The timeout value to validate
        :param name: The name of the timeout attribute to validate. This is
            used to specify in error messages.
        :return: The validated and casted version of the given value.
        :raises ValueError: If it is a numeric value less than or equal to
            zero, or the type is not an integer, float, or None.
        """
        if value is None or value is _DEFAULT_TIMEOUT:
            return value
    
        if isinstance(value, bool):
            raise ValueError(
                "Timeout cannot be a boolean value. It must "
                "be an int, float or None."
            )
        try:
            float(value)
        except (TypeError, ValueError):
            raise ValueError(
                "Timeout value %s was %s, but it must be an "
                "int, float or None." % (name, value)
>           ) from None
E           ValueError: Timeout value connect was <object object at 0x7f0b1e4612e0>, but it must be an int, float or None.

.tox/functional-py37-django32/lib/python3.7/site-packages/urllib3/util/timeout.py:159: ValueError

Check warning on line 0 in tests.integration.bin_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_naventity_runs_without_error_with_arguments (tests.integration.bin_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
localhost = <Netbox: localhost.example.org>, snmpsim = None

    @pytest.mark.timeout(10)
    def test_naventity_runs_without_error_with_arguments(localhost, snmpsim):
        """
        Verifies that naventity runs with a zero exit code when given an
        ip address and a port
    
        Added in regards to: https://github.com/Uninett/nav/issues/2433
        """
        proc = subprocess.Popen(
            ["./bin/naventity", localhost.ip, "-p", "1024"],
            stderr=subprocess.STDOUT,
            stdout=subprocess.PIPE,
        )
        (done, fail) = proc.communicate()
        retcode = proc.wait()
    
        if done:
            print(done.decode('utf-8'))
        if fail:
            print(fail.decode('utf-8'))
    
>       assert retcode == 0
E       assert 1 == 0
E         +1
E         -0

done       = b'Traceback (most recent call last):\n--- <exception caught here> ---\n  File "./bin/naventity", line 77, in collect_e...amed_table\n    ret_table = yield df\ntwisted.internet.error.TimeoutError: User timeout caused connection failure.\n\n'
fail       = None
localhost  = <Netbox: localhost.example.org>
proc       = <subprocess.Popen object at 0x7f7a2515eee0>
retcode    = 1
snmpsim    = None

tests/integration/bin_test.py:38: AssertionError

Check warning on line 0 in tests.integration.snmp_walk_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_snmp_walk_does_not_raise_error_at_end_of_mib_with_snmp_version_1 (tests.integration.snmp_walk_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
snmpsim = None

    def test_snmp_walk_does_not_raise_error_at_end_of_mib_with_snmp_version_1(snmpsim):
        snmp_v1 = Snmp(host='127.0.0.1', community="snmpwalk", version="1", port=1024)
>       result = snmp_v1.walk(query="1.3.6.1.2.1.47.1.1.1.1.16.39")

snmp_v1    = <nav.Snmp.pynetsnmp.Snmp object at 0x7f7a2527c700>
snmpsim    = None

tests/integration/snmp_walk_test.py:6: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
python/nav/Snmp/pynetsnmp.py:204: in walk
    response = self.handle.sgetnext(current_oid)
        current_oid = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        query      = '1.3.6.1.2.1.47.1.1.1.1.16.39'
        result     = []
        root_oid   = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        self       = <nav.Snmp.pynetsnmp.Snmp object at 0x7f7a2527c700>
python/nav/Snmp/pynetsnmp.py:321: in sgetnext
    _raise_on_error(self.sess.contents.s_snmp_errno)
        oid        = <pynetsnmp.netsnmp.c_long_Array_13 object at 0x7f7a22c8e0c0>
        req        = <pynetsnmp.netsnmp.LP_netsnmp_pdu object at 0x7f7a22c81cc0>
        response   = <pynetsnmp.netsnmp.LP_netsnmp_pdu object at 0x7f7a22c8e140>
        root       = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        self       = <nav.Snmp.pynetsnmp._MySnmpSession object at 0x7f7a1d3e1b50>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

err_code = -24

    def _raise_on_error(err_code):
        """Raises an appropriate NAV exception for a non-null SNMP err_code value.
    
        Does nothing if err_code is 0.
    
        """
        if err_code == 0:
            return
        elif err_code == netsnmp.SNMPERR_TIMEOUT:
>           raise TimeOutException(snmp_api_errstring(err_code))
E           nav.Snmp.errors.TimeOutException: Timed out waiting for SNMP response: Timeout

err_code   = -24

python/nav/Snmp/pynetsnmp.py:454: TimeOutException

Check warning on line 0 in tests.integration.snmp_walk_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_snmp_walk_does_not_raise_error_at_end_of_mib_with_snmp_version_2 (tests.integration.snmp_walk_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
snmpsim = None

    def test_snmp_walk_does_not_raise_error_at_end_of_mib_with_snmp_version_2(snmpsim):
        snmp_v2 = Snmp(host='127.0.0.1', community="snmpwalk", version="2c", port=1024)
>       result = snmp_v2.walk(query="1.3.6.1.2.1.47.1.1.1.1.16.39")

snmp_v2    = <nav.Snmp.pynetsnmp.Snmp object at 0x7f7a24557220>
snmpsim    = None

tests/integration/snmp_walk_test.py:12: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
python/nav/Snmp/pynetsnmp.py:204: in walk
    response = self.handle.sgetnext(current_oid)
        current_oid = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        query      = '1.3.6.1.2.1.47.1.1.1.1.16.39'
        result     = []
        root_oid   = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        self       = <nav.Snmp.pynetsnmp.Snmp object at 0x7f7a24557220>
python/nav/Snmp/pynetsnmp.py:321: in sgetnext
    _raise_on_error(self.sess.contents.s_snmp_errno)
        oid        = <pynetsnmp.netsnmp.c_long_Array_13 object at 0x7f7a22c968c0>
        req        = <pynetsnmp.netsnmp.LP_netsnmp_pdu object at 0x7f7a22c96bc0>
        response   = <pynetsnmp.netsnmp.LP_netsnmp_pdu object at 0x7f7a22c96dc0>
        root       = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        self       = <nav.Snmp.pynetsnmp._MySnmpSession object at 0x7f7a24557a90>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

err_code = -24

    def _raise_on_error(err_code):
        """Raises an appropriate NAV exception for a non-null SNMP err_code value.
    
        Does nothing if err_code is 0.
    
        """
        if err_code == 0:
            return
        elif err_code == netsnmp.SNMPERR_TIMEOUT:
>           raise TimeOutException(snmp_api_errstring(err_code))
E           nav.Snmp.errors.TimeOutException: Timed out waiting for SNMP response: Timeout

err_code   = -24

python/nav/Snmp/pynetsnmp.py:454: TimeOutException

Check warning on line 0 in tests.integration.snmp_walk_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_snmp_bulkwalk_does_not_raise_error_at_end_of_mib (tests.integration.snmp_walk_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
snmpsim = None

    def test_snmp_bulkwalk_does_not_raise_error_at_end_of_mib(snmpsim):
        snmp_v2 = Snmp(host='127.0.0.1', community="snmpwalk", version="2c", port=1024)
>       result = snmp_v2.bulkwalk(query="1.3.6.1.2.1.47.1.1.1.1.16.39")

snmp_v2    = <nav.Snmp.pynetsnmp.Snmp object at 0x7f7a252906d0>
snmpsim    = None

tests/integration/snmp_walk_test.py:18: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
python/nav/Snmp/pynetsnmp.py:267: in bulkwalk
    response = self.handle.sgetbulk(
        current_oid = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        query      = '1.3.6.1.2.1.47.1.1.1.1.16.39'
        result     = []
        root_oid   = OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')
        self       = <nav.Snmp.pynetsnmp.Snmp object at 0x7f7a252906d0>
        strip_prefix = False
python/nav/Snmp/pynetsnmp.py:339: in sgetbulk
    _raise_on_error(self.sess.contents.s_snmp_errno)
        maxrepetitions = 15
        nonrepeaters = 0
        oid        = <pynetsnmp.netsnmp.c_long_Array_13 object at 0x7f7a22c93240>
        oids       = [OID('.1.3.6.1.2.1.47.1.1.1.1.16.39')]
        req        = <pynetsnmp.netsnmp.LP_netsnmp_pdu object at 0x7f7a22c931c0>
        response   = <pynetsnmp.netsnmp.LP_netsnmp_pdu object at 0x7f7a22c932c0>
        self       = <nav.Snmp.pynetsnmp._MySnmpSession object at 0x7f7a252909a0>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

err_code = -24

    def _raise_on_error(err_code):
        """Raises an appropriate NAV exception for a non-null SNMP err_code value.
    
        Does nothing if err_code is 0.
    
        """
        if err_code == 0:
            return
        elif err_code == netsnmp.SNMPERR_TIMEOUT:
>           raise TimeOutException(snmp_api_errstring(err_code))
E           nav.Snmp.errors.TimeOutException: Timed out waiting for SNMP response: Timeout

err_code   = -24

python/nav/Snmp/pynetsnmp.py:454: TimeOutException

Check warning on line 0 in tests.integration.ipdevpoll.utils_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_get_arista_vrf_instances_should_return_expected_instances (tests.integration.ipdevpoll.utils_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_get_arista_vrf_instances_should_return_expected_instances>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a22914100 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a226a39d0>
pyfuncitem = <Function test_get_arista_vrf_instances_should_return_expected_instances>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a23e07af0>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a22914100 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.arista_vrf_mib_test.TestAristaVrfMib

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_get_vrf_states_should_return_expected_vrfs (tests.integration.mibs.arista_vrf_mib_test.TestAristaVrfMib)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_get_vrf_states_should_return_expected_vrfs>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a2291dac0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a230f8c10>
pyfuncitem = <Function test_get_vrf_states_should_return_expected_vrfs>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a23eaaa60>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a2291dac0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.arista_vrf_mib_test.TestAristaVrfMib

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_get_vrf_states_should_not_return_vrfs_with_nonmatching_states (tests.integration.mibs.arista_vrf_mib_test.TestAristaVrfMib)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_get_vrf_states_should_not_return_vrfs_with_nonmatching_states>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a22a2a670 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a226ad5e0>
pyfuncitem = <Function test_get_vrf_states_should_not_return_vrfs_with_nonmatching_states>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a23e01700>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a22a2a670 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.ip_mib_test.TestMultiIpMib

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_get_ifindex_ip_mac_mappings_should_find_mappings_across_arista_vrfs (tests.integration.mibs.ip_mib_test.TestMultiIpMib)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_get_ifindex_ip_mac_mappings_should_find_mappings_across_arista_vrfs>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a229840d0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a230f8af0>
pyfuncitem = <Function test_get_ifindex_ip_mac_mappings_should_find_mappings_across_arista_vrfs>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a23e0ba60>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a229840d0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.memory_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_juniper_get_memory_usage (tests.integration.mibs.memory_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_juniper_get_memory_usage>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a2526c610 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a23eaaca0>
pyfuncitem = <Function test_juniper_get_memory_usage>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a23e079d0>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a2526c610 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.memory_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_hp_get_memory_usage (tests.integration.mibs.memory_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_hp_get_memory_usage>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a22a2aca0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a23e07ca0>
pyfuncitem = <Function test_hp_get_memory_usage>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a2195aa60>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a22a2aca0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.memory_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_cisco_get_memory_usage (tests.integration.mibs.memory_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_cisco_get_memory_usage>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a22a78df0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a230a21f0>
pyfuncitem = <Function test_cisco_get_memory_usage>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a226a3c10>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a22a78df0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.sensors_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_apc_pdu (tests.integration.mibs.sensors_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_apc_pdu>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a229af790 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a2195a790>
pyfuncitem = <Function test_apc_pdu>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a23e07ca0>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a229af790 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.sensors_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_P8652 (tests.integration.mibs.sensors_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_P8652>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a22a542e0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a226a5040>
pyfuncitem = <Function test_P8652>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a226a5280>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a22a542e0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.sensors_test

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_raritan_pdu (tests.integration.mibs.sensors_test)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_raritan_pdu>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a22a6f2b0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a226a14c0>
pyfuncitem = <Function test_raritan_pdu>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a226a11f0>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a22a6f2b0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check warning on line 0 in tests.integration.mibs.wlsx_systemext_mib_test.TestWLSXSystemextMib

See this annotation in the file changed.

@github-actions github-actions / Test results

All 3 runs failed: test_get_serial_number_should_return_expected_value (tests.integration.mibs.wlsx_systemext_mib_test.TestWLSXSystemextMib)

artifacts/test-reports/integration-py37-django32/integration-results.xml
artifacts/test-reports/integration-py38-django32/integration-results.xml
artifacts/test-reports/integration-py39-django32/integration-results.xml
Raw output
pyfuncitem = <Function test_get_serial_number_should_return_expected_value>

    def pytest_pyfunc_call(pyfuncitem):
        if _instances.gr_twisted is not None:
            if _instances.gr_twisted.dead:
                raise RuntimeError("twisted reactor has stopped")
    
            def in_reactor(d, f, *args):
                return defer.maybeDeferred(f, *args).chainDeferred(d)
    
            d = defer.Deferred()
            _instances.reactor.callLater(
                0.0, in_reactor, d, _pytest_pyfunc_call, pyfuncitem
            )
>           blockon_default(d)

d          = <Deferred at 0x7f7a229846d0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
in_reactor = <function pytest_pyfunc_call.<locals>.in_reactor at 0x7f7a2269d160>
pyfuncitem = <Function test_get_serial_number_should_return_expected_value>

.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:235: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.tox/integration-py38-django32/lib/python3.8/site-packages/pytest_twisted.py:95: in blockon_default
    result[0].raiseException()
        _result    = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
        cb         = <function blockon_default.<locals>.cb at 0x7f7a23d81550>
        current    = <greenlet.greenlet object at 0x7f7a32125dc0 (otid=0x7f7a3211fbd0) current active started main>
        d          = <Deferred at 0x7f7a229846d0 current result: <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>>
        result     = [<twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>]
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

    def raiseException(self):
>       raise self.value.with_traceback(self.tb)
E       twisted.internet.error.TimeoutError: User timeout caused connection failure.

self       = <twisted.python.failure.Failure twisted.internet.error.TimeoutError: User timeout caused connection failure.>

.tox/integration-py38-django32/lib/python3.8/site-packages/twisted/python/failure.py:488: TimeoutError

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test results

96 skipped tests found

There are 96 skipped tests, see "Raw output" for the full list of skipped tests.
Raw output
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/index/dashboard/export/2]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/messages/rss]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/alertprofiles.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/arnold.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/business.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/calendar.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/color.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/custom.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/devicehistory.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/geomap.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/index.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/info_room.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/interface_browser.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/ipam.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/ipdevinfo.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/jquery-ui-1.8.21.custom.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/jquery-ui.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/local_rickshaw.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/machinetracker.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/multi-select.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/my_account.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/navlets.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/navlets_compact.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/neighbors.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/netmap.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/networkexplorer.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/portadmin.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/quickselect.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/rack.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/report.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/seeddb.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/status.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/subnet_matrix.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/syslogger.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/threshold.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/timepicker.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/treeselect.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/useradmin.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/css/nav/watchdog.css]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/about/ntnu.jpg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/about/sikt.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/ipam/subnetallocator_whole.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/lys/green.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/main/favicon.ico]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/main/nav-logo-grey.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/main/nav-logo.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/main/sikt-logo-grey.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/alertprofiles.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/arnold.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/auditlog.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/devicehistory.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/geomap.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/info.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/interface_browser.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/ipam.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/ipdevinfo.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/l2trace.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/machinetracker.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/macwatch.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/maintenance.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/messages.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/neighbors.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/network-explorer.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/portadmin.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/radius.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/report.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/seeddb.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/stats.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/status.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/suitcase.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/syslog-analyzer.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/threshold.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/useradmin.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/vlanplot.png]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/images/toolbox/watchdog.svg]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/Calendar.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/MyHTTPProtocol.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/NetworkLayer.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/Permalink.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/PopupControl.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/Time.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/TimeInterval.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/TimeNavigator.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/coordinates.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/geomap.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/proj4js-compressed.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/projdefs/EPSG326xx.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/projdefs/EPSG327xx.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/geomap/util.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/libs/OpenLayers.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/libs/jquery.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/libs/require.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/require_config.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/require_config_dev.js]
tests.integration.web.crawler_test ‑ test_page_should_be_valid_html[/static/js/src/seeddb_add_patch.js]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test results

3233 tests found (test 1 to 714)

There are 3233 tests, see "Raw output" for the list of tests 1 to 714.
Raw output
Chrome_113_0_0_0_(Linux_x86_64).Checkbox Selector ‑ Checkbox Selector should create a checkbox in the node
Chrome_113_0_0_0_(Linux_x86_64).Checkbox Selector ‑ Checkbox Selector should toggle on all the other checkboxes based on main one
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters add filters ‑ Global DT Filters add filters should throw error if no node to attach filters to
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters day_since ‑ Global DT Filters day_since yesterday is 1 day since today
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters extract_date ‑ Global DT Filters extract_date correctly from string
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters extract_date ‑ Global DT Filters extract_date with no date in string should return oldest date
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter last seen on trunk ‑ Global DT Filters filter last seen on trunk with value should return false
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter last seen on trunk ‑ Global DT Filters filter last seen on trunk without value should return true
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with no value should return true
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with value greater than cellvalue should return false
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with value less than cellvalue should return true
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should hit basic vlan number
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should not hit on missing vlan
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should not hit substring match
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should return true on no vlan
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should match case insensitive
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should match trunk string
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should not match not trunk string
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters remove keywords ‑ Global DT Filters remove keywords should remove one keyword from search
Chrome_113_0_0_0_(Linux_x86_64).Global DT Filters remove keywords ‑ Global DT Filters remove keywords should remove several keyword from search
Chrome_113_0_0_0_(Linux_x86_64).Numbers ‑ Numbers combines with toFixed for removing padding zeroes
Chrome_113_0_0_0_(Linux_x86_64).Numbers ‑ Numbers removes padding zeroes
Chrome_113_0_0_0_(Linux_x86_64).Numbers ‑ Numbers type is 'number'
Chrome_113_0_0_0_(Linux_x86_64).Numbers ‑ Numbers with input 'null' is 0
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should filter options when typing in search field
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should show all options when searching for nothing
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work on optgroups
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with optgroups
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with several searchwords
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with several searchwords on several textareas
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work without optgroup
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect 'select all' button should select all options in this textarea
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should add a 'select all' button on textarea with multiple class
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should add a search field
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should display the hidden select when label is clicked
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should flip arrow on label click
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should have only one arrow in the label
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should not add a 'select all' button on textarea without multiple class
Chrome_113_0_0_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should set size on textarea to 10
Chrome_113_0_0_0_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should return an object with an x and y member
Chrome_113_0_0_0_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should set x to be the timestamp
Chrome_113_0_0_0_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should set y to be the value
Chrome_113_0_0_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should not remove other stuff
Chrome_113_0_0_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a double function call
Chrome_113_0_0_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call
Chrome_113_0_0_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call with arguments
Chrome_113_0_0_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call with extra
Chrome_113_0_0_0_(Linux_x86_64).modulesort module-asc ‑ modulesort module-asc should be appended to jquery datatable
Chrome_113_0_0_0_(Linux_x86_64).modulesort module-asc ‑ modulesort module-asc should sort modules ascending
Chrome_113_0_0_0_(Linux_x86_64).modulesort module-desc ‑ modulesort module-desc should be appended to jquery datatable
Chrome_113_0_0_0_(Linux_x86_64).modulesort module-desc ‑ modulesort module-desc should sort modules ascending
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort basic natural sort should work
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort basic numeric sort should work
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort basic text sorting should work
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on cisco interfaces
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on ifnames without prefix
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on input inside links
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on input with spaces
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on mixed input
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on mixed modules
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on other modules
Chrome_113_0_0_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on triple modules
Chrome_113_0_0_0_(Linux_x86_64).natsort sort ascending ‑ natsort sort ascending should be appended to jquery datatable
Chrome_113_0_0_0_(Linux_x86_64).natsort sort ascending ‑ natsort sort ascending should sort ascending
Chrome_113_0_0_0_(Linux_x86_64).natsort sort descending ‑ natsort sort descending should be appended to jquery datatable
Chrome_113_0_0_0_(Linux_x86_64).natsort sort descending ‑ natsort sort descending should sort descending
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort basic numbers
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort basic text
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on ifnames without prefix
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on mixed input
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on other modules
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on triple modules
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort equal stuff
Chrome_113_0_0_0_(Linux_x86_64).natsort ‑ natsort should sort natural sort
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format giga-scale numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format mega-scale numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format micro-scale numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format milli-scale numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format nano-scale numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format negative numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format pico-scale numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format tera-scale numbers right
Chrome_113_0_0_0_(Linux_x86_64).siNumbers ‑ siNumbers should format two-digit numbers right
Chrome_113_0_0_0_(Linux_x86_64).table info converter create csv ‑ table info converter create csv should concatenate properly
Chrome_113_0_0_0_(Linux_x86_64).table info converter find sysname ‑ table info converter find sysname should find correct sysname from caption
Chrome_113_0_0_0_(Linux_x86_64).table info converter format rowdata ‑ table info converter format rowdata should create own trim function if it does not exist
Chrome_113_0_0_0_(Linux_x86_64).table info converter format rowdata ‑ table info converter format rowdata should return a list of the cells values
Chrome_113_0_0_0_(Linux_x86_64).toFixed ‑ toFixed returns a string
Firefox_113_0_(Linux_x86_64).Checkbox Selector ‑ Checkbox Selector should create a checkbox in the node
Firefox_113_0_(Linux_x86_64).Checkbox Selector ‑ Checkbox Selector should toggle on all the other checkboxes based on main one
Firefox_113_0_(Linux_x86_64).Global DT Filters add filters ‑ Global DT Filters add filters should throw error if no node to attach filters to
Firefox_113_0_(Linux_x86_64).Global DT Filters day_since ‑ Global DT Filters day_since yesterday is 1 day since today
Firefox_113_0_(Linux_x86_64).Global DT Filters extract_date ‑ Global DT Filters extract_date correctly from string
Firefox_113_0_(Linux_x86_64).Global DT Filters extract_date ‑ Global DT Filters extract_date with no date in string should return oldest date
Firefox_113_0_(Linux_x86_64).Global DT Filters filter last seen on trunk ‑ Global DT Filters filter last seen on trunk with value should return false
Firefox_113_0_(Linux_x86_64).Global DT Filters filter last seen on trunk ‑ Global DT Filters filter last seen on trunk without value should return true
Firefox_113_0_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with no value should return true
Firefox_113_0_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with value greater than cellvalue should return false
Firefox_113_0_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with value less than cellvalue should return true
Firefox_113_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should hit basic vlan number
Firefox_113_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should not hit on missing vlan
Firefox_113_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should not hit substring match
Firefox_113_0_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should return true on no vlan
Firefox_113_0_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should match case insensitive
Firefox_113_0_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should match trunk string
Firefox_113_0_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should not match not trunk string
Firefox_113_0_(Linux_x86_64).Global DT Filters remove keywords ‑ Global DT Filters remove keywords should remove one keyword from search
Firefox_113_0_(Linux_x86_64).Global DT Filters remove keywords ‑ Global DT Filters remove keywords should remove several keyword from search
Firefox_113_0_(Linux_x86_64).Numbers ‑ Numbers combines with toFixed for removing padding zeroes
Firefox_113_0_(Linux_x86_64).Numbers ‑ Numbers removes padding zeroes
Firefox_113_0_(Linux_x86_64).Numbers ‑ Numbers type is 'number'
Firefox_113_0_(Linux_x86_64).Numbers ‑ Numbers with input 'null' is 0
Firefox_113_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should filter options when typing in search field
Firefox_113_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should show all options when searching for nothing
Firefox_113_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work on optgroups
Firefox_113_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with optgroups
Firefox_113_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with several searchwords
Firefox_113_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with several searchwords on several textareas
Firefox_113_0_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work without optgroup
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect 'select all' button should select all options in this textarea
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should add a 'select all' button on textarea with multiple class
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should add a search field
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should display the hidden select when label is clicked
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should flip arrow on label click
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should have only one arrow in the label
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should not add a 'select all' button on textarea without multiple class
Firefox_113_0_(Linux_x86_64).QuickSelect ‑ QuickSelect should set size on textarea to 10
Firefox_113_0_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should return an object with an x and y member
Firefox_113_0_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should set x to be the timestamp
Firefox_113_0_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should set y to be the value
Firefox_113_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should not remove other stuff
Firefox_113_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a double function call
Firefox_113_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call
Firefox_113_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call with arguments
Firefox_113_0_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call with extra
Firefox_113_0_(Linux_x86_64).modulesort module-asc ‑ modulesort module-asc should be appended to jquery datatable
Firefox_113_0_(Linux_x86_64).modulesort module-asc ‑ modulesort module-asc should sort modules ascending
Firefox_113_0_(Linux_x86_64).modulesort module-desc ‑ modulesort module-desc should be appended to jquery datatable
Firefox_113_0_(Linux_x86_64).modulesort module-desc ‑ modulesort module-desc should sort modules ascending
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort basic natural sort should work
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort basic numeric sort should work
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort basic text sorting should work
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on cisco interfaces
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on ifnames without prefix
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on input inside links
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on input with spaces
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on mixed input
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on mixed modules
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on other modules
Firefox_113_0_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on triple modules
Firefox_113_0_(Linux_x86_64).natsort sort ascending ‑ natsort sort ascending should be appended to jquery datatable
Firefox_113_0_(Linux_x86_64).natsort sort ascending ‑ natsort sort ascending should sort ascending
Firefox_113_0_(Linux_x86_64).natsort sort descending ‑ natsort sort descending should be appended to jquery datatable
Firefox_113_0_(Linux_x86_64).natsort sort descending ‑ natsort sort descending should sort descending
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort basic numbers
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort basic text
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on ifnames without prefix
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on mixed input
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on other modules
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort correctly on triple modules
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort equal stuff
Firefox_113_0_(Linux_x86_64).natsort ‑ natsort should sort natural sort
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format giga-scale numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format mega-scale numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format micro-scale numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format milli-scale numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format nano-scale numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format negative numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format pico-scale numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format tera-scale numbers right
Firefox_113_0_(Linux_x86_64).siNumbers ‑ siNumbers should format two-digit numbers right
Firefox_113_0_(Linux_x86_64).table info converter create csv ‑ table info converter create csv should concatenate properly
Firefox_113_0_(Linux_x86_64).table info converter find sysname ‑ table info converter find sysname should find correct sysname from caption
Firefox_113_0_(Linux_x86_64).table info converter format rowdata ‑ table info converter format rowdata should create own trim function if it does not exist
Firefox_113_0_(Linux_x86_64).table info converter format rowdata ‑ table info converter format rowdata should return a list of the cells values
Firefox_113_0_(Linux_x86_64).toFixed ‑ toFixed returns a string
PhantomJS_2_1_1_(Linux_x86_64).Checkbox Selector ‑ Checkbox Selector should create a checkbox in the node
PhantomJS_2_1_1_(Linux_x86_64).Checkbox Selector ‑ Checkbox Selector should toggle on all the other checkboxes based on main one
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters add filters ‑ Global DT Filters add filters should throw error if no node to attach filters to
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters day_since ‑ Global DT Filters day_since yesterday is 1 day since today
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters extract_date ‑ Global DT Filters extract_date correctly from string
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters extract_date ‑ Global DT Filters extract_date with no date in string should return oldest date
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter last seen on trunk ‑ Global DT Filters filter last seen on trunk with value should return false
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter last seen on trunk ‑ Global DT Filters filter last seen on trunk without value should return true
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with no value should return true
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with value greater than cellvalue should return false
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter last seen ‑ Global DT Filters filter last seen with value less than cellvalue should return true
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should hit basic vlan number
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should not hit on missing vlan
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should not hit substring match
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters filter vlan ‑ Global DT Filters filter vlan should return true on no vlan
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should match case insensitive
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should match trunk string
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters is_trunk ‑ Global DT Filters is_trunk should not match not trunk string
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters remove keywords ‑ Global DT Filters remove keywords should remove one keyword from search
PhantomJS_2_1_1_(Linux_x86_64).Global DT Filters remove keywords ‑ Global DT Filters remove keywords should remove several keyword from search
PhantomJS_2_1_1_(Linux_x86_64).Numbers ‑ Numbers combines with toFixed for removing padding zeroes
PhantomJS_2_1_1_(Linux_x86_64).Numbers ‑ Numbers removes padding zeroes
PhantomJS_2_1_1_(Linux_x86_64).Numbers ‑ Numbers type is 'number'
PhantomJS_2_1_1_(Linux_x86_64).Numbers ‑ Numbers with input 'null' is 0
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should filter options when typing in search field
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should show all options when searching for nothing
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work on optgroups
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with optgroups
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with several searchwords
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work with several searchwords on several textareas
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect search ‑ QuickSelect search should work without optgroup
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect 'select all' button should select all options in this textarea
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect should add a 'select all' button on textarea with multiple class
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect should add a search field
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect should display the hidden select when label is clicked
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect should flip arrow on label click
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect should have only one arrow in the label
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect should not add a 'select all' button on textarea without multiple class
PhantomJS_2_1_1_(Linux_x86_64).QuickSelect ‑ QuickSelect should set size on textarea to 10
PhantomJS_2_1_1_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should return an object with an x and y member
PhantomJS_2_1_1_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should set x to be the timestamp
PhantomJS_2_1_1_(Linux_x86_64).convertToRickshaw ‑ convertToRickshaw should set y to be the value
PhantomJS_2_1_1_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should not remove other stuff
PhantomJS_2_1_1_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a double function call
PhantomJS_2_1_1_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call
PhantomJS_2_1_1_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call with arguments
PhantomJS_2_1_1_(Linux_x86_64).filterFunctionCalls ‑ filterFunctionCalls should remove a single function call with extra
PhantomJS_2_1_1_(Linux_x86_64).modulesort module-asc ‑ modulesort module-asc should be appended to jquery datatable
PhantomJS_2_1_1_(Linux_x86_64).modulesort module-asc ‑ modulesort module-asc should sort modules ascending
PhantomJS_2_1_1_(Linux_x86_64).modulesort module-desc ‑ modulesort module-desc should be appended to jquery datatable
PhantomJS_2_1_1_(Linux_x86_64).modulesort module-desc ‑ modulesort module-desc should sort modules ascending
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort basic natural sort should work
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort basic numeric sort should work
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort basic text sorting should work
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on cisco interfaces
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on ifnames without prefix
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on input inside links
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on input with spaces
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on mixed input
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on mixed modules
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on other modules
PhantomJS_2_1_1_(Linux_x86_64).modulesort ‑ modulesort should sort correctly on triple modules
PhantomJS_2_1_1_(Linux_x86_64).natsort sort ascending ‑ natsort sort ascending should be appended to jquery datatable
PhantomJS_2_1_1_(Linux_x86_64).natsort sort ascending ‑ natsort sort ascending should sort ascending
PhantomJS_2_1_1_(Linux_x86_64).natsort sort descending ‑ natsort sort descending should be appended to jquery datatable
PhantomJS_2_1_1_(Linux_x86_64).natsort sort descending ‑ natsort sort descending should sort descending
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort basic numbers
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort basic text
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort correctly on ifnames without prefix
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort correctly on mixed input
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort correctly on other modules
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort correctly on triple modules
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort equal stuff
PhantomJS_2_1_1_(Linux_x86_64).natsort ‑ natsort should sort natural sort
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format giga-scale numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format mega-scale numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format micro-scale numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format milli-scale numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format nano-scale numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format negative numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format pico-scale numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format tera-scale numbers right
PhantomJS_2_1_1_(Linux_x86_64).siNumbers ‑ siNumbers should format two-digit numbers right
PhantomJS_2_1_1_(Linux_x86_64).table info converter create csv ‑ table info converter create csv should concatenate properly
PhantomJS_2_1_1_(Linux_x86_64).table info converter find sysname ‑ table info converter find sysname should find correct sysname from caption
PhantomJS_2_1_1_(Linux_x86_64).table info converter format rowdata ‑ table info converter format rowdata should create own trim function if it does not exist
PhantomJS_2_1_1_(Linux_x86_64).table info converter format rowdata ‑ table info converter format rowdata should return a list of the cells values
PhantomJS_2_1_1_(Linux_x86_64).toFixed ‑ toFixed returns a string
tests.functional.arnold_test ‑ test_title_should_contain_detentions
tests.functional.geomap_test ‑ test_geomap_loaded
tests.functional.navbar_test ‑ test_simple_ip_search_should_return_result
tests.functional.netmap_test ‑ test_netmap_index_should_not_have_syntax_errors
tests.functional.room_test ‑ test_room_image_upload
tests.functional.status_test ‑ test_panel_should_toggle_when_clicked
tests.functional.status_test ‑ test_remember_last_panel_state
tests.integration.alertengine_test ‑ test_all_handlers_should_be_loadable
tests.integration.api_test ‑ test_alert_should_be_visible_in_api
tests.integration.api_test ‑ test_allowed_endpoints[account-/api/1/account/]
tests.integration.api_test ‑ test_allowed_endpoints[accountgroup-/api/1/accountgroup/]
tests.integration.api_test ‑ test_allowed_endpoints[alert-/api/1/alert/]
tests.integration.api_test ‑ test_allowed_endpoints[arp-/api/1/arp/]
tests.integration.api_test ‑ test_allowed_endpoints[auditlog-/api/1/auditlog/]
tests.integration.api_test ‑ test_allowed_endpoints[cabling-/api/1/cabling/]
tests.integration.api_test ‑ test_allowed_endpoints[cam-/api/1/cam/]
tests.integration.api_test ‑ test_allowed_endpoints[interface-/api/1/interface/]
tests.integration.api_test ‑ test_allowed_endpoints[location-/api/1/location/]
tests.integration.api_test ‑ test_allowed_endpoints[management_profile-/api/1/management-profile/]
tests.integration.api_test ‑ test_allowed_endpoints[module-/api/1/module/]
tests.integration.api_test ‑ test_allowed_endpoints[netbox-/api/1/netbox/]
tests.integration.api_test ‑ test_allowed_endpoints[patch-/api/1/patch/]
tests.integration.api_test ‑ test_allowed_endpoints[prefix-/api/1/prefix/]
tests.integration.api_test ‑ test_allowed_endpoints[prefix_routed-/api/1/prefix/routed]
tests.integration.api_test ‑ test_allowed_endpoints[prefix_usage-/api/1/prefix/usage]
tests.integration.api_test ‑ test_allowed_endpoints[rack-/api/1/rack/]
tests.integration.api_test ‑ test_allowed_endpoints[room-/api/1/room/]
tests.integration.api_test ‑ test_allowed_endpoints[servicehandler-/api/1/servicehandler/]
tests.integration.api_test ‑ test_allowed_endpoints[unrecognized_neighbor-/api/1/unrecognized-neighbor/]
tests.integration.api_test ‑ test_allowed_endpoints[vlan-/api/1/vlan/]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:alert-detail-1]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:alert-list-None]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:interface-detail-1]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:interface-list-None]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:netbox-list-None]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:prefix-usage-list-None]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:rack-detail-1]
tests.integration.api_test ‑ test_api_urls_should_resolve[api:1:room-list-None]
tests.integration.api_test ‑ test_create[account]
tests.integration.api_test ‑ test_create[location]
tests.integration.api_test ‑ test_create[netbox]
tests.integration.api_test ‑ test_create[room]
tests.integration.api_test ‑ test_create[vlan]
tests.integration.api_test ‑ test_create_prefix
tests.integration.api_test ‑ test_create_prefix_with_usage
tests.integration.api_test ‑ test_delete[account]
tests.integration.api_test ‑ test_delete[location]
tests.integration.api_test ‑ test_delete[room]
tests.integration.api_test ‑ test_delete[vlan]
tests.integration.api_test ‑ test_delete_netbox
tests.integration.api_test ‑ test_delete_room_wrong_room
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/account/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/accountgroup/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/alert/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/arp/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/auditlog/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/cabling/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/cam/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/interface/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/location/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/management-profile/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/module/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/netbox/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/patch/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/prefix/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/prefix/routed]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/prefix/usage]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/rack/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/room/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/servicehandler/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/unrecognized-neighbor/]
tests.integration.api_test ‑ test_forbidden_endpoints[/api/1/vlan/]
tests.integration.api_test ‑ test_get_new_room
tests.integration.api_test ‑ test_get_wrong_room
tests.integration.api_test ‑ test_interface_with_last_used_should_be_listable
tests.integration.api_test ‑ test_nonexistent_alert_should_give_404
tests.integration.api_test ‑ test_ordering_should_not_crash
tests.integration.api_test ‑ test_page_size
tests.integration.api_test ‑ test_patch_room
tests.integration.api_test ‑ test_patch_room_not_found
tests.integration.api_test ‑ test_patch_room_wrong_location
tests.integration.api_test ‑ test_update_group_on_org
tests.integration.api_test ‑ test_update_netbox
tests.integration.api_test ‑ test_update_org_on_account
tests.integration.api_test ‑ test_update_prefix_remove_usage
tests.integration.api_test ‑ test_validate_vlan
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_addLog_entry_before
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_add_create_entry
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_add_delete_entry
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_add_log_entry_actor_only
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_add_log_entry_bad_template
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_compare_objects
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_find_name
tests.integration.auditlog_test.AuditlogModelTestCase ‑ test_str
tests.integration.auditlog_test.AuditlogUtilsTestCase ‑ test_get_auditlog_entries
tests.integration.bin_test ‑ test_binary_runs[./bin/alertengine.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/autoenable.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/collect_active_ip.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/emailreports.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/eventengine]
tests.integration.bin_test ‑ test_binary_runs[./bin/ipdevpolld]
tests.integration.bin_test ‑ test_binary_runs[./bin/logengine.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/macwatch.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/mailin.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/maintengine.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/nav]
tests.integration.bin_test ‑ test_binary_runs[./bin/navcheckservice]
tests.integration.bin_test ‑ test_binary_runs[./bin/navclean]
tests.integration.bin_test ‑ test_binary_runs[./bin/navdf]
tests.integration.bin_test ‑ test_binary_runs[./bin/navdump]
tests.integration.bin_test ‑ test_binary_runs[./bin/naventity]
tests.integration.bin_test ‑ test_binary_runs[./bin/navoidverify]
tests.integration.bin_test ‑ test_binary_runs[./bin/navpgdump]
tests.integration.bin_test ‑ test_binary_runs[./bin/navsnmp]
tests.integration.bin_test ‑ test_binary_runs[./bin/navstats]
tests.integration.bin_test ‑ test_binary_runs[./bin/navsyncdb]
tests.integration.bin_test ‑ test_binary_runs[./bin/navsynctypes]
tests.integration.bin_test ‑ test_binary_runs[./bin/navtopology]
tests.integration.bin_test ‑ test_binary_runs[./bin/navuser]
tests.integration.bin_test ‑ test_binary_runs[./bin/netbiostracker.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/pping.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/servicemon.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/smsd.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/snmptrapd.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/sortedstats_cacher.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/start_arnold.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/t1000.py]
tests.integration.bin_test ‑ test_binary_runs[./bin/thresholdmon]
tests.integration.bin_test ‑ test_naventity_runs_without_error_with_arguments
tests.integration.bulkimport_test.TestGenericBulkImport ‑ test_is_generator
tests.integration.bulkimport_test.TestLocationImporter ‑ test_duplicate_locations_should_give_error
tests.integration.bulkimport_test.TestLocationImporter ‑ test_import
tests.integration.bulkimport_test.TestLocationImporter ‑ test_import_no_description
tests.integration.bulkimport_test.TestLocationImporter ‑ test_imported_objects_can_be_saved
tests.integration.bulkimport_test.TestLocationImporter ‑ test_location_can_have_parent
tests.integration.bulkimport_test.TestLocationImporter ‑ test_location_nodescr_can_have_parent
tests.integration.bulkimport_test.TestLocationImporter ‑ test_too_long_locationid_should_raise_error
tests.integration.bulkimport_test.TestManagementProfileImporter ‑ test_import
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_created_objects_can_be_saved
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_duplicate_locations_should_give_error
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_get_groups_from_group
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_get_netboxinfo_from_function
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_invalid_master_should_give_error
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_invalid_room_gives_error
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_netbox_function_is_set
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_netbox_groups_are_set
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_server_import_yields_netbox_and_device_model
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_simple_import_yields_netbox_and_device_model
tests.integration.bulkimport_test.TestNetboxImporter ‑ test_simple_import_yields_objects_with_proper_values
tests.integration.bulkimport_test.TestPrefixImporter ‑ test_import
tests.integration.djangodb_test ‑ test_db_password_should_not_be_blank
tests.integration.djangodb_test ‑ test_django_db_password_should_be_correct
tests.integration.event_test.TestEvent ‑ test_should_post_simple_event_without_error
tests.integration.eventengine.alerts_test ‑ test_should_be_able_to_find_snmpagentdown_alert_msg_templates
tests.integration.eventengine.alerts_test ‑ test_should_be_able_to_load_snmpagentdown_alert_msg_template
tests.integration.eventengine.alerts_test ‑ test_should_be_able_to_render_snmpagentdown_alert_msg_template
tests.integration.eventengine.boxdown_test ‑ test_eventengine_should_declare_box_down
tests.integration.eventengine.severity_test.TestThatExampleSeverityRules ‑ test_should_be_valid
tests.integration.eventengine.upgrade_test ‑ test_upgrade_handler_should_copy_old_and_new_version_to_alert_history_if_they_exist
tests.integration.eventengine.upgrade_test ‑ test_upgrade_handler_should_not_fail_if_old_and_new_version_do_not_exist
tests.integration.ipdevpoll.db_test ‑ test_django_debug_cleanup_should_run_without_errors
tests.integration.ipdevpoll.plugins.entity_test ‑ test_entity_sets_software_version_of_entity_with_lowest_index
tests.integration.ipdevpoll.plugins.snmpcheck_test ‑ test_short_outage
tests.integration.ipdevpoll.plugins.typeoid_test ‑ test_get_vendor_should_return_expected_vendor
tests.integration.ipdevpoll.plugins.typeoid_test ‑ test_make_new_vendor_should_return_expected_vendor_object
tests.integration.ipdevpoll.pool_test ‑ test_cancel[InlinePool]
tests.integration.ipdevpoll.pool_test ‑ test_cancel[WorkerPool]
tests.integration.ipdevpoll.pool_test ‑ test_crash[InlinePool]
tests.integration.ipdevpoll.pool_test ‑ test_crash[WorkerPool]
tests.integration.ipdevpoll.pool_test ‑ test_fail[InlinePool]
tests.integration.ipdevpoll.pool_test ‑ test_fail[WorkerPool]
tests.integration.ipdevpoll.pool_test ‑ test_not_done[InlinePool]
tests.integration.ipdevpoll.pool_test ‑ test_not_done[WorkerPool]
tests.integration.ipdevpoll.pool_test ‑ test_reschedule[InlinePool]
tests.integration.ipdevpoll.pool_test ‑ test_reschedule[WorkerPool]
tests.integration.ipdevpoll.pool_test ‑ test_success[InlinePool]
tests.integration.ipdevpoll.pool_test ‑ test_success[WorkerPool]
tests.integration.ipdevpoll.utils_test ‑ test_get_arista_vrf_instances_should_return_expected_instances
tests.integration.l2trace_test.DownlinkTests ‑ test_employee1_downlink_should_be_foo_sw1_gi_0_10
tests.integration.l2trace_test.DownlinkTests ‑ test_foo_sw1_employee_vlan_uplink_should_be_foo_gw_gi_0_13
tests.integration.l2trace_test.DownlinkTests ‑ test_foo_sw1_vlan_downlink_should_be_on_foo_gw_gi_0_13
tests.integration.l2trace_test.GatewayTests ‑ test_foo_gw_is_router
tests.integration.l2trace_test.GatewayTests ‑ test_foo_gw_is_router_for_admin_vlan
tests.integration.l2trace_test.GatewayTests ‑ test_foo_gw_is_router_for_employee_vlan
tests.integration.l2trace_test.GatewayTests ‑ test_foo_sw1_is_not_a_router
tests.integration.l2trace_test.GetVlanFromThingsTest ‑ test_arbitrary_ip_is_on_vlan_10
tests.integration.l2trace_test.GetVlanFromThingsTest ‑ test_router_is_on_vlan_10
tests.integration.l2trace_test.GetVlanFromThingsTest ‑ test_switch_is_on_vlan_10
tests.integration.l2trace_test.HostTests ‑ test_host_with_host_argument_returns_equal_instance
tests.integration.l2trace_test.HostTests ‑ test_host_without_resolvable_name
tests.integration.l2trace_test.HostTests ‑ test_hosts_are_equal
tests.integration.l2trace_test.JunctionTests ‑ test_find_junction_should_return_foo_sw1
tests.integration.l2trace_test.JunctionTests ‑ test_find_junction_should_return_nodes_from_paths
tests.integration.l2trace_test.JunctionTests ‑ test_find_junction_should_return_same_host
tests.integration.l2trace_test.JunctionTests ‑ test_join_at_junction_should_be_3_long
tests.integration.l2trace_test.JunctionTests ‑ test_joined_path_should_start_and_end_with_correct_hosts
tests.integration.l2trace_test.NetboxFromHostTest ‑ test_known_ip_is_netbox
tests.integration.l2trace_test.NetboxFromHostTest ‑ test_known_ip_is_router
tests.integration.l2trace_test.NetboxFromHostTest ‑ test_unknown_ip_gives_none_as_result
tests.integration.l2trace_test.NetboxFromHostTest ‑ test_unknown_ip_is_host
tests.integration.l2trace_test.PathTests ‑ test_path_for_employee1_should_be_3_long
tests.integration.l2trace_test.PathTests ‑ test_path_for_employee1_should_be_on_vlan_20
tests.integration.l2trace_test.PathTests ‑ test_path_for_employee1_should_end_with_foo_gw
tests.integration.l2trace_test.PathTests ‑ test_path_for_employee1_should_start_with_employee_1
tests.integration.l2trace_test.PathTests ‑ test_path_for_employee2_should_be_3_long
tests.integration.l2trace_test.PathTests ‑ test_path_for_foo_sw1_should_be_2_long
tests.integration.l2trace_test.PathTests ‑ test_path_for_foo_sw1_should_be_on_vlan_10
tests.integration.l2trace_test.PathTests ‑ test_path_for_foo_sw1_should_end_at_foo_gw
tests.integration.l2trace_test.PathTests ‑ test_path_for_foo_sw1_should_start_with_foo_sw1
tests.integration.l2trace_test.StartPathTests ‑ test_start_path_for_employee1_should_be_on_vlan_20
tests.integration.l2trace_test.StartPathTests ‑ test_start_path_for_foo_sw1_ip_should_be_on_vlan_10
tests.integration.l2trace_test.TraceTests ‑ test_employee_path_passes_through_foo_sw1
tests.integration.l2trace_test.TraceTests ‑ test_first_and_last_rows_match_hosts
tests.integration.l2trace_test.TraceTests ‑ test_first_row_is_host_from
tests.integration.l2trace_test.TraceTests ‑ test_make_rows_generates_result_rows
tests.integration.l2trace_test.TraceTests ‑ test_make_rows_returns_generator
tests.integration.l2trace_test.TraceTests ‑ test_should_not_fail_on_invalid_hosts
tests.integration.l2trace_test.UplinkTests ‑ test_foo_sw1_employee_vlan_uplink_should_be_gi_0_1
tests.integration.l2trace_test.UplinkTests ‑ test_foo_sw1_vlan_uplink_should_be_gi_0_1
tests.integration.l2trace_test.VlanEqualityTests ‑ test_ips_should_be_on_same_vlan
tests.integration.l2trace_test.VlanEqualityTests ‑ test_ips_should_not_be_on_same_vlan
tests.integration.logs_test ‑ test_reopen_log_files_runs_without_error
tests.integration.mibs.arista_vrf_mib_test.TestAristaVrfMib ‑ test_get_vrf_states_should_not_return_vrfs_with_nonmatching_states
tests.integration.mibs.arista_vrf_mib_test.TestAristaVrfMib ‑ test_get_vrf_states_should_return_expected_vrfs
tests.integration.mibs.ip_mib_test.TestMultiIpMib ‑ test_get_ifindex_ip_mac_mappings_should_find_mappings_across_arista_vrfs
tests.integration.mibs.memory_test ‑ test_cisco_get_memory_usage
tests.integration.mibs.memory_test ‑ test_hp_get_memory_usage
tests.integration.mibs.memory_test ‑ test_juniper_get_memory_usage
tests.integration.mibs.sensors_test ‑ test_P8652
tests.integration.mibs.sensors_test ‑ test_apc_pdu
tests.integration.mibs.sensors_test ‑ test_raritan_pdu
tests.integration.mibs.wlsx_systemext_mib_test.TestWLSXSystemextMib ‑ test_get_serial_number_should_return_expected_value
tests.integration.models.account_test.AccountTest ‑ test_is_admin_returns_false_if_default_account
tests.integration.models.account_test.AccountTest ‑ test_is_admin_returns_true_if_administrator
tests.integration.models.alerthistvarmap_test ‑ test_alerthist_varmap_can_be_replaced
tests.integration.models.alerthistvarmap_test ‑ test_alerthist_varmap_can_be_retrieved_after_save
tests.integration.models.alerthistvarmap_test ‑ test_alerthist_varmap_can_be_saved
tests.integration.models.alerthistvarmap_test ‑ test_alerthist_varmap_single_key_can_be_updated
tests.integration.models.alerthistvarmap_test ‑ test_alerthist_varmap_single_key_can_be_updated_after_reload
tests.integration.models.alerthistvarmap_test ‑ test_plain_alerthist_can_be_posted
tests.integration.models.alertsubscription_test ‑ test_delete_alert_subscription
tests.integration.models.eventvarmap_test ‑ test_event_varmap_can_be_replaced
tests.integration.models.eventvarmap_test ‑ test_event_varmap_can_be_retrieved_after_save
tests.integration.models.eventvarmap_test ‑ test_event_varmap_can_be_saved
tests.integration.models.eventvarmap_test ‑ test_event_varmap_single_key_can_be_updated
tests.integration.models.eventvarmap_test ‑ test_event_varmap_single_key_can_be_updated_after_reload
tests.integration.models.eventvarmap_test ‑ test_plain_event_can_be_posted
tests.integration.models.fields_test.LegacyGenericForeignKeyTest ‑ test_get_via_lgfk
tests.integration.models.fields_test.LegacyGenericForeignKeyTest ‑ test_save_model_with_lgfk
tests.integration.models.fields_test.LegacyGenericForeignKeyTest ‑ test_set_via_lgfk
tests.integration.models.model_test ‑ test_django_model[APIToken]
tests.integration.models.model_test ‑ test_django_model[AccountAlertQueue]
tests.integration.models.model_test ‑ test_django_model[AccountDashboard]
tests.integration.models.model_test ‑ test_django_model[AccountGroup]
tests.integration.models.model_test ‑ test_django_model[AccountNavlet]
tests.integration.models.model_test ‑ test_django_model[AccountTool]
tests.integration.models.model_test ‑ test_django_model[Account]
tests.integration.models.model_test ‑ test_django_model[Acknowledgement]
tests.integration.models.model_test ‑ test_django_model[AdjacencyCandidate]
tests.integration.models.model_test ‑ test_django_model[AlertAddress]
tests.integration.models.model_test ‑ test_django_model[AlertHistoryMessage]
tests.integration.models.model_test ‑ test_django_model[AlertHistoryVariable]
tests.integration.models.model_test ‑ test_django_model[AlertHistory]
tests.integration.models.model_test ‑ test_django_model[AlertPreference]
tests.integration.models.model_test ‑ test_django_model[AlertProfile]
tests.integration.models.model_test ‑ test_django_model[AlertQueueMessage]
tests.integration.models.model_test ‑ test_django_model[AlertQueueVariable]
tests.integration.models.model_test ‑ test_django_model[AlertQueue]
tests.integration.models.model_test ‑ test_django_model[AlertSender]
tests.integration.models.model_test ‑ test_django_model[AlertSubscription]
tests.integration.models.model_test ‑ test_django_model[AlertType]
tests.integration.models.model_test ‑ test_django_model[Arp]
tests.integration.models.model_test ‑ test_django_model[Cabling]
tests.integration.models.model_test ‑ test_django_model[Cam]
tests.integration.models.model_test ‑ test_django_model[Category]
tests.integration.models.model_test ‑ test_django_model[DetentionProfile]
tests.integration.models.model_test ‑ test_django_model[Device]
tests.integration.models.model_test ‑ test_django_model[ErrorError]
tests.integration.models.model_test ‑ test_django_model[EventQueueVar]
tests.integration.models.model_test ‑ test_django_model[EventQueue]
tests.integration.models.model_test ‑ test_django_model[EventType]
tests.integration.models.model_test ‑ test_django_model[Event]
tests.integration.models.model_test ‑ test_django_model[Expression]
tests.integration.models.model_test ‑ test_django_model[FilterGroupContent]
tests.integration.models.model_test ‑ test_django_model[FilterGroup]
tests.integration.models.model_test ‑ test_django_model[Filter]
tests.integration.models.model_test ‑ test_django_model[GatewayPeerSession]
tests.integration.models.model_test ‑ test_django_model[GwPortPrefix]
tests.integration.models.model_test ‑ test_django_model[IanaIftype]
tests.integration.models.model_test ‑ test_django_model[Identity]
tests.integration.models.model_test ‑ test_django_model[Image]
tests.integration.models.model_test ‑ test_django_model[InterfaceAggregate]
tests.integration.models.model_test ‑ test_django_model[InterfaceStack]
tests.integration.models.model_test ‑ test_django_model[Interface]
tests.integration.models.model_test ‑ test_django_model[IpdevpollJobLog]
tests.integration.models.model_test ‑ test_django_model[Justification]
tests.integration.models.model_test ‑ test_django_model[Location]
tests.integration.models.model_test ‑ test_django_model[LogEntry]
tests.integration.models.model_test ‑ test_django_model[LogMessageType]
tests.integration.models.model_test ‑ test_django_model[LogMessage]
tests.integration.models.model_test ‑ test_django_model[LoggerCategory]
tests.integration.models.model_test ‑ test_django_model[MacWatchMatch]
tests.integration.models.model_test ‑ test_django_model[MacWatch]
tests.integration.models.model_test ‑ test_django_model[MaintenanceComponent]
tests.integration.models.model_test ‑ test_django_model[MaintenanceTask]
tests.integration.models.model_test ‑ test_django_model[ManagementProfile]
tests.integration.models.model_test ‑ test_django_model[MatchField]
tests.integration.models.model_test ‑ test_django_model[Memory]
tests.integration.models.model_test ‑ test_django_model[MessageToMaintenanceTask]
tests.integration.models.model_test ‑ test_django_model[MessageView]
tests.integration.models.model_test ‑ test_django_model[Message]
tests.integration.models.model_test ‑ test_django_model[Module]
tests.integration.models.model_test ‑ test_django_model[NavbarLink]
tests.integration.models.model_test ‑ test_django_model[NetType]
tests.integration.models.model_test ‑ test_django_model[Netbios]
tests.integration.models.model_test ‑ test_django_model[NetboxCategory]
tests.integration.models.model_test ‑ test_django_model[NetboxEntity]
tests.integration.models.model_test ‑ test_django_model[NetboxGroup]
tests.integration.models.model_test ‑ test_django_model[NetboxInfo]
tests.integration.models.model_test ‑ test_django_model[NetboxPrefix]
tests.integration.models.model_test ‑ test_django_model[NetboxProfile]
tests.integration.models.model_test ‑ test_django_model[NetboxType]
tests.integration.models.model_test ‑ test_django_model[NetboxVtpVlan]
tests.integration.models.model_test ‑ test_django_model[Netbox]
tests.integration.models.model_test ‑ test_django_model[NetmapViewCategories]
tests.integration.models.model_test ‑ test_django_model[NetmapViewDefaultView]
tests.integration.models.model_test ‑ test_django_model[NetmapViewNodePosition]
tests.integration.models.model_test ‑ test_django_model[NetmapView]
tests.integration.models.model_test ‑ test_django_model[Operator]
tests.integration.models.model_test ‑ test_django_model[Organization]
tests.integration.models.model_test ‑ test_django_model[Origin]
tests.integration.models.model_test ‑ test_django_model[POEGroup]
tests.integration.models.model_test ‑ test_django_model[POEPort]
tests.integration.models.model_test ‑ test_django_model[Patch]
tests.integration.models.model_test ‑ test_django_model[PowerSupplyOrFan]
tests.integration.models.model_test ‑ test_django_model[PrefixUsage]
tests.integration.models.model_test ‑ test_django_model[Prefix]
tests.integration.models.model_test ‑ test_django_model[Priority]
tests.integration.models.model_test ‑ test_django_model[PrivilegeType]
tests.integration.models.model_test ‑ test_django_model[Privilege]
tests.integration.models.model_test ‑ test_django_model[QuarantineVlan]
tests.integration.models.model_test ‑ test_django_model[Rack]
tests.integration.models.model_test ‑ test_django_model[ReportSubscription]
tests.integration.models.model_test ‑ test_django_model[Room]
tests.integration.models.model_test ‑ test_django_model[RoutingProtocolAttribute]
tests.integration.models.model_test ‑ test_django_model[SMSQueue]
tests.integration.models.model_test ‑ test_django_model[Sensor]
tests.integration.models.model_test ‑ test_django_model[ServiceProperty]
tests.integration.models.model_test ‑ test_django_model[Service]
tests.integration.models.model_test ‑ test_django_model[Session]
tests.integration.models.model_test ‑ test_django_model[Subsystem]
tests.integration.models.model_test ‑ test_django_model[SwPortAllowedVlan]
tests.integration.models.model_test ‑ test_django_model[SwPortBlocked]
tests.integration.models.model_test ‑ test_django_model[SwPortVlan]
tests.integration.models.model_test ‑ test_django_model[ThresholdRule]
tests.integration.models.model_test ‑ test_django_model[TimePeriod]
tests.integration.models.model_test ‑ test_django_model[UnrecognizedNeighbor]
tests.integration.models.model_test ‑ test_django_model[Usage]
tests.integration.models.model_test ‑ test_django_model[Vendor]
tests.integration.models.model_test ‑ test_django_model[Vlan]
tests.integration.models.netbox_test ‑ test_get_snmp_config_should_pick_highest_available_snmp_version
tests.integration.models.netbox_test ‑ test_netbox_mac_addresses_should_return_distinct_set_of_addresses
tests.integration.models.netbox_test ‑ test_netbox_should_be_annotated_with_chassis_serial
tests.integration.models.rack_test.TestRack ‑ test_that_rack_configuration_can_be_loaded_without_error
tests.integration.models.rack_test.TestRack ‑ test_that_rack_configuration_can_be_saved_without_error
tests.integration.models.rack_test.TestRack ‑ test_that_rack_configuration_is_a_dict
tests.integration.networkexplorer_test.FormsTest ‑ test_search_form
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_ip_search
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_ip_search_exact
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_mac_search
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_portname_search
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_portname_search_exact
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_room_search
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_room_search_exact
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_search_expand_mac
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_search_expand_netbox
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_search_expand_swport
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_search_expand_sysname
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_sysname_search
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_vlan_search
tests.integration.networkexplorer_test.NetworkExplorerSearchTest ‑ test_vlan_search_exact
tests.integration.networkexplorer_test.ViewsTest ‑ test_index_view
tests.integration.networkexplorer_test.ViewsTest ‑ test_router_json_view
tests.integration.networkexplorer_test.ViewsTest ‑ test_search_view_with_invalid_query
tests.integration.networkexplorer_test.ViewsTest ‑ test_search_view_with_valid_query
tests.integration.pping_test ‑ test_pping_localhost_should_work
tests.integration.pping_test ‑ test_pping_nonavailable_host_should_fail
tests.integration.pping_test ‑ test_pping_should_post_event_when_host_is_unreachable
tests.integration.querysets_test.NetboxQuerysetTest ‑ test_on_maintenance_false
tests.integration.querysets_test.NetboxQuerysetTest ‑ test_on_maintenance_true
tests.integration.report.generator_test ‑ test_non_ascii_filter_should_work
tests.integration.report.generator_test ‑ test_report[aggregate]
tests.integration.report.generator_test ‑ test_report[allowedvlan]
tests.integration.report.generator_test ‑ test_report[availability_month]
tests.integration.report.generator_test ‑ test_report[bgp]
tests.integration.report.generator_test ‑ test_report[chassis_models]
tests.integration.report.generator_test ‑ test_report[cisco_serials]
tests.integration.report.generator_test ‑ test_report[device]
tests.integration.report.generator_test ‑ test_report[duplexmismatch]
tests.integration.report.generator_test ‑ test_report[gwip]
tests.integration.report.generator_test ‑ test_report[gwport]
tests.integration.report.generator_test ‑ test_report[ifstack]
tests.integration.report.generator_test ‑ test_report[interfaces]
tests.integration.report.generator_test ‑ test_report[lastupdated]
tests.integration.report.generator_test ‑ test_report[location]
tests.integration.report.generator_test ‑ test_report[mem]
tests.integration.report.generator_test ‑ test_report[modules]
tests.integration.report.generator_test ‑ test_report[netbox]
tests.integration.report.generator_test ‑ test_report[netboxinfo]
tests.integration.report.generator_test ‑ test_report[offline_devices]
tests.integration.report.generator_test ‑ test_report[org]
tests.integration.report.generator_test ‑ test_report[prefix]
tests.integration.report.generator_test ‑ test_report[room]
tests.integration.report.generator_test ‑ test_report[servicemon]
tests.integration.report.generator_test ‑ test_report[srv]
tests.integration.report.generator_test ‑ test_report[stpblock]
tests.integration.report.generator_test ‑ test_report[swport]
tests.integration.report.generator_test ‑ test_report[swporttrunk]
tests.integration.report.generator_test ‑ test_report[topology_candidates]
tests.integration.report.generator_test ‑ test_report[type]
tests.integration.report.generator_test ‑ test_report[unrecognized_neighbors]
tests.integration.report.generator_test ‑ test_report[uptime]
tests.integration.report.generator_test ‑ test_report[usage]
tests.integration.report.generator_test ‑ test_report[vendor]
tests.integration.seeddb_test ‑ test_dependencies
tests.integration.seeddb_test ‑ test_dependencies_no_whitelist
tests.integration.seeddb_test ‑ test_editing_deleted_netboxes_should_raise_404
tests.integration.seeddb_test ‑ test_usage_edit_url_should_allow_slashes
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[AIRESPACE-WIRELESS-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[ALCATEL-IND1-PORT-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[ARISTA-VRF-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[BGP4-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[BGP4-V2-MIB-JUNIPER]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[BRIDGE-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CD6C]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-BGP4-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-C2900-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-CDP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-ENHANCED-MEMPOOL-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-ENTITY-FRU-CONTROL-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-ENTITY-SENSOR-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-ENVMON-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-HSRP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-IETF-IP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-MEMORY-POOL-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-PAE-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-POWER-ETHERNET-EXT-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-PROCESS-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-STACK-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / Test results

3233 tests found (test 715 to 1390)

There are 3233 tests, see "Raw output" for the list of tests 715 to 1390.
Raw output
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-VLAN-MEMBERSHIP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CISCO-VTP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[COMETMS-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CORIANT-GROOVE-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[CPQPOWER-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[DNOS-SWITCHING-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[ELTEK-DISTRIBUTED-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[ENTITY-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[ENTITY-SENSOR-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[EXTREME-VLAN-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[EtherLike-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[FAN-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[GEIST-MIB-V3]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[GEIST-V4-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IANA-ENTITY-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IBM-PDU-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IEEE8023-LAG-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IF-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IP-FORWARD-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IPV6-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IT-WATCHDOGS-MIB-V3]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IT-WATCHDOGS-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[IT-WATCHDOGS-V4-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[JUNIPER-DOM-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[JUNIPER-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[LLDP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[MG-SNMP-UPS-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[NETSWITCH-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[OLD-CISCO-CPU-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[P8541-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[P8652-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[PDU2-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[POWER-ETHERNET-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[POWERSUPPLY-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[PWTv1-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[PowerNet-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[Q-BRIDGE-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[RITTAL-CMC-III-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[SEMI-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[SNMPv2-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[SPAGENT-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[STAND-ALONE-ETHERNET-SWITCH-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[STATISTICS-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[UPS-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[VRRP-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[WLSX-SYSTEMEXT-MIB]
tests.integration.smidump_test ‑ test_all_oids_in_smidumped_mib_should_be_valid[XUPS-MIB]
tests.integration.smsd_test ‑ test_smsd_test_message_with_uninettmaildispatcher_should_work
tests.integration.snmp_walk_test ‑ test_snmp_bulkwalk_does_not_raise_error_at_end_of_mib
tests.integration.snmp_walk_test ‑ test_snmp_walk_does_not_raise_error_at_end_of_mib_with_snmp_version_1
tests.integration.snmp_walk_test ‑ test_snmp_walk_does_not_raise_error_at_end_of_mib_with_snmp_version_2
tests.integration.snmptrapd_test ‑ test_loading_plugin_with_initialize_method_raises_no_exception
tests.integration.snmptrapd_test ‑ test_plugin_loader_raises_no_exception_if_plugin_has_no_initialize_method
tests.integration.snmptrapd_test ‑ test_plugin_loader_reading_in_modules_from_config_file
tests.integration.snmptrapd_test ‑ test_traplistener_does_not_raise_error_on_signals
tests.integration.snmptrapd_test.TestSnmpTrap ‑ test_trap_agent_should_be_correctly_identified
tests.integration.snmptrapd_test.TestSnmpTrap ‑ test_trap_agent_should_be_correctly_identified_if_sent_from_different_ip
tests.integration.sql_test ‑ test_public_namespace_should_be_empty
tests.integration.statemon.radius_test ‑ test_installed_pyrad_can_parse_default_dictionary
tests.integration.statemondb_test ‑ test_get_checkers_does_not_raise
tests.integration.thresholdmon.test_events ‑ test_events
tests.integration.watchdog_test ‑ test_get_status_cache_does_not_raise
tests.integration.web.ajax_test ‑ test_neighbormap_loads_without_crashing
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_activate_profile
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_add_private_filter_should_succeed
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_add_public_filter_should_succeed
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_confirm_remove_profile
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_deactivate_profile
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_remove_profile
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_save_profile
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-address-new]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-address]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-filter_groups-new]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-filter_groups]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-filters-new]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-filters]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-matchfields-new]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-matchfields]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-overview]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-permissions]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-profile-new]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-profile]
tests.integration.web.alertprofiles_test ‑ test_alertprofiles_view[alertprofiles-sms]
tests.integration.web.alertprofiles_test ‑ test_profile_with_nonascii_name_should_be_saved
tests.integration.web.alertprofiles_test ‑ test_set_accountgroup_permissions_should_not_crash
tests.integration.web.arnold_test ‑ test_arnold_manualdetention_should_not_crash
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/about]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/address/new]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/address]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/62]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/63]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/64]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/65]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/68]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/69]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/70]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/71]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/72]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/73]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/74]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/75]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/76]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/77]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/78]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/79]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/81]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/82]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/83]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/84]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups/new]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filter-groups]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/13]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/14]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/15]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/16]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/20]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/21]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/23]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/24]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/25]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/26]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/27]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/28]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/29]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/30]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/31]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/32]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/33]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/34]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/35]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/36]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters/new]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/filters]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/10]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/11]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/12]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/13]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/14]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/15]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/16]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/17]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/18]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/19]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/20]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/21]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/22]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields/new]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/matchfields]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/permissions/1000]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/permissions/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/permissions/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/permissions/3]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/permissions]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/profile/new]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/profile]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles/sms]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/alertprofiles]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/api]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/addquarantinevlan]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/addreason]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/detainedports]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/history]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/manualdetention]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/predefined/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/predefined]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold/search]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/arnold]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/auditlog/netbox/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/auditlog]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/business/device_availability]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/business/link_availability]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/business]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/delete_module]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/history/location/b%C3%B8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/history/location/mylocation]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/history/netbox/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/history/room/b%C3%B8-123]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/history/room/myroom]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/history]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory/registererror]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/devicehistory]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/geomap/normal]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/geomap/open]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/geomap]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/index/dashboard/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/index/dashboard/export/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/interfaces]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipam]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/1/affected]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/1/unrecognized_neighbors]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/id=1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/ip=192.168.0.42]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/service/matrix]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/service]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/test-gsw.example.org/interface=1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo/test-gsw.example.org]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/ipdevinfo]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/l2trace]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/machinetracker/ip]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/machinetracker/mac]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/machinetracker/netbios]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/machinetracker/swp]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/machinetracker]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/macwatch/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/macwatch]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/active]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/calendar]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/historic]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-01]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-02]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-03]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-04]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-05]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-06]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-07]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-08]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-09]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-10]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-11]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-12]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-13]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-14]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-15]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-16]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-17]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-18]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-19]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-20]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-21]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-22]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-23]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-24]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-25]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-26]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-27]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-28]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-29]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-30]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new/2023-05-31]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/new]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance/planned]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/maintenance]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/messages/active]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/messages/archive]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/messages/create]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/messages/rss]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/messages/scheduled]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/neighbors]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/netmap/admin]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/netmap]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/networkexplorer]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/portadmin]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/preferences]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/radius/acctcharts]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/radius/acctsearch]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/radius/logsearch]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/radius]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/aggregate]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/allowedvlan]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/availability_month]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/bgp]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/chassis_models]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/cisco_serials]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/device]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/duplexmismatch]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/gwip]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/gwport]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/ifstack]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/interfaces]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/lastupdated]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/location]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/matrix/10.0.0.0/8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/matrix]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/mem]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/modules]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/netbox]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/netboxinfo]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/offline_devices]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/org]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/prefix]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/reportlist]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/room]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/servicemon]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/srv]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/stpblock]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/swport]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/swporttrunk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/topology_candidates]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/type]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/unrecognized_neighbors]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/uptime]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/usage]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report/vendor]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/report]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/AD/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/ADC/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/ADC]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/AD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/BACKUP/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/BACKUP]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/DNS/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/DNS]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/FS/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/FS]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/LDAP/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/LDAP]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/MAIL/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/MAIL]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/NOTES/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/NOTES]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/STORE/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/STORE]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/TEST/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/TEST]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/UNIX-STUD/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/UNIX-STUD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/UNIX/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/UNIX]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/WEB/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/WEB]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/WIN-STUD/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/WIN-STUD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/WIN/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup/WIN]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/devicegroup]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/location/b%C3%B8/upload]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/location/b%C3%B8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/location/mylocation/upload]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/location/mylocation]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/location]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/prefix/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/prefix/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/prefix]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/b%C3%B8-123/deviceinfo]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/b%C3%B8-123/netboxes]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/b%C3%B8-123/racks]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/b%C3%B8-123/sensors]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/b%C3%B8-123/upload]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/b%C3%B8-123]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/myroom/deviceinfo]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/myroom/netboxes]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/myroom/racks]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/myroom/sensors]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/myroom/upload]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room/myroom]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/room]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/vlan/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/vlan/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search/vlan]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/search]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/cabling/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/cabling/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/cabling/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/cabling]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/copy/b%C3%B8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/copy/mylocation]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/delete/b%C3%B8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/delete/mylocation]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/edit/b%C3%B8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location/edit/mylocation]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/location]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/management-profile/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/management-profile/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/management-profile/delete/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/management-profile/edit/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/management-profile]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netbox/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netbox/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netbox/copy/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netbox/delete/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netbox/edit/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netbox]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/ADC]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/AD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/BACKUP]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/DNS]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/FS]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/LDAP]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/MAIL]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/NOTES]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/STORE]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/TEST]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/UNIX-STUD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/UNIX]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/WEB]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/WIN-STUD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/delete/WIN]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/ADC]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/AD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/BACKUP]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/DNS]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/FS]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/LDAP]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/MAIL]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/NOTES]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/STORE]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/TEST]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/UNIX-STUD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/UNIX]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/WEB]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/WIN-STUD]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup/edit/WIN]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/netboxgroup]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/organization/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/organization/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/organization/delete/myorg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/organization/edit/myorg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/organization]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/patch/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/patch/edit]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/patch]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/prefix/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/prefix/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/prefix/delete/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/prefix/edit/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/prefix]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/copy/b%C3%B8-123]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/copy/myroom]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/delete/b%C3%B8-123]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/delete/myroom]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/edit/b%C3%B8-123]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room/edit/myroom]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/room]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/service/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/service/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/service]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/10]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/11]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/12]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/13]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/14]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/15]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/16]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/17]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/18]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/19]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/20]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/21]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/22]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/23]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/24]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/25]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/26]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/27]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/28]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/29]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/30]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/31]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/32]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/33]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/34]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/35]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/36]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/37]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/38]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/39]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/3]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/40]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/41]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/42]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/43]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/44]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/45]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/46]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/47]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/48]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/49]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/4]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/50]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/51]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/52]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/53]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/54]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/55]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/56]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/57]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/58]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/59]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/5]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/60]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/61]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/62]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/63]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/64]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/65]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/66]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/67]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/68]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/69]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/6]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/70]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/71]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/72]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/73]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/74]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/75]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/76]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/77]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/78]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/79]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/7]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/80]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/delete/9]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/10]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/11]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/12]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/13]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/14]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/15]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/16]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/17]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/18]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/19]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/20]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/21]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/22]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/23]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/24]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/25]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/26]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/27]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/28]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/29]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/30]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/31]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/32]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/33]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/34]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/35]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/36]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/37]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/38]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/39]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/3]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/40]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/41]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/42]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/43]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/44]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/45]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/46]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/47]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/48]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/49]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/4]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/50]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/51]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/52]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/53]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/54]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/55]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/56]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/57]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/58]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/59]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/5]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/60]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/61]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/62]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/63]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/64]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/65]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/66]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/67]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/68]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/69]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/6]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/70]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/71]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/72]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/73]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/74]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/75]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/76]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/77]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/78]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/79]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/7]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/80]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/8]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type/edit/9]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/type]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/usage/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/usage/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/usage]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/vendor/add]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/vendor/bulk]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/vendor]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/vlan/edit/1]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/vlan/edit/2]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb/vlan]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/seeddb]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/alertprofiles.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/arnold.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/business.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/calendar.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/color.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/custom.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/devicehistory.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/geomap.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/index.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/info_room.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/interface_browser.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/ipam.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/ipdevinfo.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/jquery-ui-1.8.21.custom.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/jquery-ui.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/local_rickshaw.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/machinetracker.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/multi-select.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/my_account.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/navlets.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/navlets_compact.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/neighbors.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/netmap.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/networkexplorer.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/portadmin.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/quickselect.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/rack.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/report.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/seeddb.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/status.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/subnet_matrix.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/syslogger.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/threshold.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/timepicker.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/treeselect.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/useradmin.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/css/nav/watchdog.css]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/about/ntnu.jpg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/about/sikt.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/ipam/subnetallocator_whole.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/lys/green.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/main/favicon.ico]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/main/nav-logo-grey.svg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/main/nav-logo.svg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/main/sikt-logo-grey.svg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/alertprofiles.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/arnold.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/auditlog.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/devicehistory.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/geomap.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/info.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/interface_browser.svg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/ipam.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/ipdevinfo.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/l2trace.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/machinetracker.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/macwatch.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/maintenance.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/messages.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/neighbors.svg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/network-explorer.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/portadmin.svg]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/radius.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/report.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/seeddb.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/stats.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/status.png]
tests.integration.web.crawler_test ‑ test_link_should_be_reachable[/static/images/toolbox/suitcase.svg]