aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCody Logan <clpo13@gmail.com>2018-12-14 11:56:01 -0800
committerCody Logan <clpo13@gmail.com>2018-12-14 11:56:01 -0800
commitfb42a66bf718098c382d6fb50f24f1c60a13f6e7 (patch)
tree9fb670bb5a3c1665617cf813eaa9279d9b283f0c /setup.py
parent6e1164de98786bbe6c9bb0c16682e314811a0a9d (diff)
downloadwikiget-fb42a66bf718098c382d6fb50f24f1c60a13f6e7.tar.gz
wikiget-fb42a66bf718098c382d6fb50f24f1c60a13f6e7.zip
Add some tests with pytest
Can be run with `pytest` (if installed) or `python setup.py test`
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index cec715f..e621c32 100644
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,8 @@ setup(
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
- install_requires=["future", "mwclient", "requests", "tqdm"],
+ install_requires=["future", "mwclient", "pytest-runner", "requests", "tqdm"],
+ tests_require=["pytest"],
project_urls={
"Bug Reports": "https://github.com/clpo13/python-wikiget/issues",
},