Skip to content

Commit

Permalink
Integrate py.test
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Jan 8, 2019
1 parent 312a0fd commit 6e04261
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@


if os.environ.get("TRAVIS") or os.environ.get("APPVEYOR"):
INSTALL_REQUIRES = ["antlr4-python3-runtime=={}".format(ANTLR_VERSION), 'pytest', 'mako', 'colorama', 'numpydoc', 'sphinxcontrib-napoleon']
INSTALL_REQUIRES = ["antlr4-python3-runtime=={}".format(ANTLR_VERSION), 'mako', 'colorama', 'numpydoc', 'sphinxcontrib-napoleon']
else:
INSTALL_REQUIRES = ["antlr4-python3-runtime=={}".format(ANTLR_VERSION), 'pytest' 'mako', 'wxPython>=4.0.0', 'colorama', 'numpydoc', 'sphinxcontrib-napoleon']
INSTALL_REQUIRES = ["antlr4-python3-runtime=={}".format(ANTLR_VERSION), 'mako', 'wxPython>=4.0.0', 'colorama', 'numpydoc', 'sphinxcontrib-napoleon']


if (sys.version_info.major == 3 and sys.version_info.minor < 4) or (sys.version_info.minor < 3):
Expand All @@ -28,6 +28,8 @@
url = 'https://www.github.com/Christoph2/pydbc',
packages = find_packages(),
install_requires = INSTALL_REQUIRES,
setup_requires=["pytest-runner"],
tests_require=["pytest"],
entry_points = {
'console_scripts': [
'vndb_importer = pydbc.scripts.vndb_importer:main'
Expand Down

0 comments on commit 6e04261

Please sign in to comment.