How to use the setuptools.command.test.test.finalize_options function in setuptools

To help you get started, we’ve selected a few setuptools examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wichert / pyramid_jwt / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = ['tests']
        self.test_suite = True
github google / mobly / setup.py View on Github external
def finalize_options(self):
        test.test.finalize_options(self)
        self.test_args = ['-x', "tests/mobly"]
        self.test_suite = True
github hjacobs / kube-ops-view / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        if self.cov_html:
            self.pytest_args.extend(['--cov-report', 'html'])
        self.pytest_args.extend(['tests'])
github andri-ch / vimrunner-python / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = ['test/tests.py']
        self.test_suite = True
github taskcluster / taskcluster / clients / client-py / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True
github ZoetropeLabs / keenmqtt / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True
github christopher-ramirez / secretary / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True
github grantjenks / free-python-games / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True
    def run_tests(self):
github di / vladiate / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = []
        self.test_suite = True
github BirkbeckCTP / annotran / setup.py View on Github external
def finalize_options(self):
        TestCommand.finalize_options(self)
        self.test_args = ['annotran']
        self.test_suite = True
        if self.cov:
            self.test_args += ['--cov', 'annotran',
                               '--cov-config', '.coveragerc']