You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/08/26 20:19:57 UTC

[2/3] tinkerpop git commit: Minor update to setup to include pytest

Minor update to setup to include pytest


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/242d271f
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/242d271f
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/242d271f

Branch: refs/heads/TINKERPOP-1278
Commit: 242d271f6840251af00840e7c6ae8a86583f4369
Parents: 4b09cdf
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Aug 26 16:19:23 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Aug 26 16:19:23 2016 -0400

----------------------------------------------------------------------
 gremlin-python/src/main/jython/setup.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/242d271f/gremlin-python/src/main/jython/setup.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/setup.py b/gremlin-python/src/main/jython/setup.py
index 3335c70..52e6fe4 100644
--- a/gremlin-python/src/main/jython/setup.py
+++ b/gremlin-python/src/main/jython/setup.py
@@ -64,9 +64,12 @@ setup(
     long_description=open("README").read(),
     test_suite="tests",
     cmdclass = {'test': PyTest},
+    tests_require=[
+        'pytest'
+    ],
     install_requires=[
         'aenum',
         'requests',
-        'tornado',
+        'tornado'
     ]
 )