You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/04/02 07:28:18 UTC

[iotdb] branch add_py_test_ci updated: Add Python client CI

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

haonan pushed a commit to branch add_py_test_ci
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/add_py_test_ci by this push:
     new e344e29  Add Python client CI
e344e29 is described below

commit e344e29a9cdb9ee81e86671cbe20356f3bba12fd
Author: HTHou <hh...@outlook.com>
AuthorDate: Sat Apr 2 15:27:28 2022 +0800

    Add Python client CI
---
 .github/workflows/client-python.yml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/client-python.yml b/.github/workflows/client-python.yml
index a843765..738beaa 100644
--- a/.github/workflows/client-python.yml
+++ b/.github/workflows/client-python.yml
@@ -1,4 +1,4 @@
-# This workflow is just for checking whether modifications works for the Go client.
+# This workflow is just for checking whether modifications works for the Pythob client.
 
 name: Python Client
 
@@ -52,8 +52,10 @@ jobs:
           path: ~/.m2
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
           restore-keys: ${{ runner.os }}-m2-
-      - name: Compile IoTDB Server
-        run: mvn -B package -Dmaven.test.skip=true  -am -pl server
+      - name: Compile IoTDB Python Client
+        run: mvn -B package -Dmaven.test.skip=true  -am -pl client-py
+      - name: Install pytest
+        run: pip3 install pytest
       - name: Integration test
         shell: bash
         run: |