Python setuptools.command.test.test.finalize_options() Examples

The following are 30 code examples of setuptools.command.test.test.finalize_options(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module setuptools.command.test.test , or try the search function .
Example #1
Source File: setup.py    From atomos with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = ['--strict', '--verbose', '--tb=long',
                          '--cov', 'atomos', '--cov-report',
                          'term-missing', 'tests']
        self.test_suite = True 
Example #2
Source File: setup.py    From python-lambda-local with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #3
Source File: setup.py    From mockaioredis with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #4
Source File: setup.py    From graphene with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #5
Source File: setup.py    From aredis with MIT License 5 votes vote down vote up
def finalize_options(self):
            TestCommand.finalize_options(self)
            self.test_args = []
            self.test_suite = True 
Example #6
Source File: setup.py    From daskos with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = ['-v', 'daskos']
        self.test_suite = True 
Example #7
Source File: setup.py    From polystores with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #8
Source File: setup.py    From python-consul with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #9
Source File: setup.py    From georasters with GNU General Public License v3.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #10
Source File: setup.py    From pypac with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        test_command.finalize_options(self)
        self.test_args = ['--strict', '--verbose', '--tb=long', 'tests']
        self.test_suite = True 
Example #11
Source File: setup.py    From packman with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        testcommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #12
Source File: setup.py    From serfclient-py with MIT License 5 votes vote down vote up
def finalize_options(self):
            TestCommand.finalize_options(self)
            self.test_args = []
            self.test_suite = True 
Example #13
Source File: setup.py    From drf-compound-fields with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
            pass 
Example #14
Source File: setup.py    From drf-compound-fields with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
            TestCommand.finalize_options(self)
            self.test_args = []
            self.test_suite = True 
Example #15
Source File: setup.py    From spilo with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        if self.cov is not None:
            self.cov = ['--cov', self.cov, '--cov-report', 'term-missing']
            if self.cov_xml:
                self.cov.extend(['--cov-report', 'xml'])
            if self.cov_html:
                self.cov.extend(['--cov-report', 'html'])
        if self.junitxml is not None:
            self.junitxml = ['--junitxml', self.junitxml] 
Example #16
Source File: setup.py    From pydevp2p with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #17
Source File: setup.py    From flask-jwt with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = [
            '-xrs',
            '--cov', 'flask_jwt',
            '--cov-report', 'term-missing',
            '--pep8',
            '--flakes',
            '--clearcache',
            'tests'
        ]
        self.test_suite = True 
Example #18
Source File: setup.py    From ab2cb with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #19
Source File: setup.py    From curses-menu with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #20
Source File: setup.py    From django-livefield with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #21
Source File: setup.py    From warcio with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        # should work with setuptools <18, 18 18.5
        self.test_suite = ' ' 
Example #22
Source File: setup.py    From scikit-plot with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #23
Source File: setup.py    From anteater with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #24
Source File: setup.py    From arya with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #25
Source File: setup.py    From django-trackstats with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #26
Source File: setup.py    From py-gocd with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #27
Source File: setup.py    From pyDataverse with MIT License 5 votes vote down vote up
def finalize_options(self):
        """Finalize options."""
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #28
Source File: setup.py    From Montreal-Forced-Aligner with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = ['--strict', '--verbose', '--tb=long', '--skiplarge', 'tests']
        #if os.environ.get('TRAVIS', False):
        #    self.test_args = ['-x', '--strict', '--verbose', '--tb=long', 'tests']
        self.test_suite = True 
Example #29
Source File: setup.py    From django-parler-rest with Apache License 2.0 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True 
Example #30
Source File: setup.py    From YANS with MIT License 5 votes vote down vote up
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True