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 2020/04/06 12:41:57 UTC

[tinkerpop] 26/27: TINKERPOP-2076 Use python3 to run console integration tests

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-2076
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit f10d0319f66a231eff43f3a29c3f8edb38a380ad
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Mar 11 09:15:26 2020 -0400

    TINKERPOP-2076 Use python3 to run console integration tests
---
 gremlin-console/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gremlin-console/pom.xml b/gremlin-console/pom.xml
index c3ce1b9..dd5b518 100644
--- a/gremlin-console/pom.xml
+++ b/gremlin-console/pom.xml
@@ -339,6 +339,14 @@ limitations under the License.
                                         <copy todir="${project.build.directory}/python">
                                             <fileset dir="src/test/python"/>
                                         </copy>
+                                        <exec dir="${project.build.directory}/python" executable="python3"
+                                              failonerror="true">
+                                            <arg line="--version"/>
+                                        </exec>
+                                        <exec dir="${project.build.directory}/python" executable="virtualenv"
+                                              failonerror="true">
+                                            <arg line="--version"/>
+                                        </exec>
                                         <exec dir="${project.build.directory}/python" executable="virtualenv"
                                               failonerror="true">
                                             <arg line="--python=python3 env"/>