Server IP : 192.158.238.246 / Your IP : 18.221.83.23 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python37/lib/python3.7/site-packages/nose/plugins/__pycache__/ |
Upload File : |
B 0�Se$ � @ sn d Z ddlZddlZddlZddlmZ ddlmZmZ ddl m Z ddlmZ e� e�ZG dd� de�ZdS ) a_ This plugin captures stdout during test execution. If the test fails or raises an error, the captured output will be appended to the error or failure output. It is enabled by default but can be disabled with the options ``-s`` or ``--nocapture``. :Options: ``--nocapture`` Don't capture stdout (any stdout output will be printed immediately) � N)�Plugin)�exc_to_unicode� force_unicode)�ln)�StringIOc @ s� e Zd ZdZdZdZdZdZdd� Zdd � Z d d� Z dd � Zdd� Zdd� Z dd� Zdd� Zdd� Zdd� Zdd� Zdd� Zdd� Zeed d d!�Zd S )"�Capturea Output capture plugin. Enabled by default. Disable with ``-s`` or ``--nocapture``. This plugin captures stdout during test execution, appending any output captured to the error or failure output, should the test fail or raise an error. TZNOSE_NOCAPTURE�capturei@ c C s g | _ d | _d S )N)�stdout�_buf)�self� r �E/opt/alt/python37/lib/python3.7/site-packages/nose/plugins/capture.py�__init__# s zCapture.__init__c C s$ |j ddd|�| j� ddd� dS )z%Register commandline options z-sz--nocapture�store_falser zUDon't capture stdout (any stdout output will be printed immediately) [NOSE_NOCAPTURE])�action�default�dest�helpN)� add_option�get�env_opt)r �parser�envr r r �options'