From 01c61b6b3c9eb8c1d5723d4f9ca9da12b7a3d0be Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 31 Oct 2018 16:36:23 +0800 Subject: Remove the empty tests --- setup.py | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index fbe5a12..e598510 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (c) 2016-2017 Weitian LI +# Copyright (c) 2016-2018 Weitian LI # MIT license # # References: @@ -16,35 +16,14 @@ import os import sys from setuptools import setup, find_packages -from setuptools.command.test import test as TestCommand import fg21sim as pkg -class PyTest(TestCommand): - user_options = [("pytest-args=", "a", "Arguments to pass to pytest")] - - def initialize_options(self): - TestCommand.initialize_options(self) - self.pytest_args = [] - - 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 pytest - errno = pytest.main(self.pytest_args) - sys.exit(errno) - - def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -# Check the minimal Python version if sys.version_info < (3, 4): sys.exit("%s requires Python >= 3.4 ..." % pkg.__pkgname__) @@ -58,8 +37,7 @@ setup( author_email=pkg.__author_email__, url=pkg.__url__, license=pkg.__license__, - # Trove classifiers - # See: https://pypi.python.org/pypi?%3Aaction=list_classifiers + # Trove classifiers (https://pypi.python.org/pypi?%3Aaction=list_classifiers) classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console", @@ -99,6 +77,4 @@ setup( dependency_links=[ "git+https://github.com/astropy/regions.git", ], - tests_require=["pytest"], - cmdclass={"test": PyTest}, ) -- cgit v1.2.2