How to use the setuptools.command.test.test.initialize_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 opennode / waldur-core / waldur_core / core / test_runner.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.parallel = 0
github Parsely / testinstances / setup.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.pytest_args = []
github BirkbeckCTP / annotran / setup.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.cov = None
github bogdal / freepacktbook / setup.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.pytest_args = []
github maykinmedia / django-admin-index / setup.py View on Github external
def initialize_options(self):
        setuptools.command.test.test.initialize_options(self)
        self.pytest_args = []
github vmw-loginsight / webhook-shims / setup.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.args = []
github santiagobasulto / smartcsv / setup.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.pytest_args = ["--cov", "smartcsv", "tests/"]
github ASPP / pelita / setup.py View on Github external
def initialize_options(self):
        _test.initialize_options(self)
        self.pytest_args = []
github oms4suse / python-ceph-cfg / setup.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.pytest_args = []
github dropbox / nsot / setup.py View on Github external
def initialize_options(self):
        TestCommand.initialize_options(self)
        self.pytest_args = []