Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated setuptools-tox integration #95

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,40 +1,4 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import sys


class Tox(TestCommand):
""" Running tox from setup.py.
See:
https://testrun.org/tox/latest/example/basic.html#integration-with-setuptools-distribute-test-commands
"""
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]

def __init__(self, dist, **kw):
TestCommand.__init__(self, dist, **kw)
self.tox_args = None
self.test_args = []
self.test_suite = True

def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None

def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True

def run_tests(self):
# import here, cause outside the eggs aren't loaded
import tox
import shlex

args = self.tox_args
if args:
args = shlex.split(self.tox_args)
errno = tox.cmdline(args=args)
sys.exit(errno)


for line in open('httpagentparser/__init__.py'):
Expand All @@ -56,8 +20,4 @@ def run_tests(self):
author='Shekhar Tiwatne',
author_email='pythonic@gmail.com',
license="http://www.opensource.org/licenses/mit-license.php",
test_suite="tests",
tests_require=['tox'],
cmdclass={'test': Tox},
)