From a1d67b71de23392f297fcb8e67dc62cc9b5b1c3b Mon Sep 17 00:00:00 2001
From: Yee <2520865+yixinglu@users.noreply.github.com>
Date: Tue, 13 Oct 2020 13:49:07 +0800
Subject: [PATCH] Fix CI failure caused by nebula-python folder (#328)

Force to merge because the issue cannot be fixed before CI passes
---
 .github/workflows/pull_request.yml | 2 +-
 ci/test.sh                         | 4 +++-
 nebula-python                      | 1 -
 3 files changed, 4 insertions(+), 3 deletions(-)
 delete mode 160000 nebula-python

diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 1e0d1c42..4599a0f8 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -132,4 +132,4 @@ jobs:
         timeout-minutes: 25
       - name: Cleanup
         if: ${{ always() }}
-        run: rm -rf "${{ github.workspace }}"
+        run: rm -rf build modules
diff --git a/ci/test.sh b/ci/test.sh
index ca6ea80d..5a20de51 100755
--- a/ci/test.sh
+++ b/ci/test.sh
@@ -15,8 +15,10 @@ mkdir -p $BUILD_DIR
 
 function get_py_client() {
     git clone -b v2.0 https://github.com/vesoft-inc/nebula-python.git
-    cd nebula-python
+    pushd nebula-python
     python3 setup.py install --user
+    popd
+    rm -rf nebula-python
 }
 
 function prepare() {
diff --git a/nebula-python b/nebula-python
deleted file mode 160000
index 7dc78785..00000000
--- a/nebula-python
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 7dc78785b7f3d69091711e0e8f63c3bdec39d6c1
-- 
GitLab