From 43a6e963ad21d9c53560ac368b1fe08d0ea7ba33 Mon Sep 17 00:00:00 2001 From: Dongze Li Date: Tue, 24 Sep 2024 12:03:48 +0800 Subject: [PATCH] ci: improve codecov coverage (#4251) --- .github/workflows/flex-interactive.yml | 2 +- .github/workflows/local-ci.yml | 2 +- VERSION | 2 +- charts/graphscope-store/Chart.yaml | 2 +- charts/graphscope-store/values.yaml | 4 ++-- charts/graphscope/Chart.yaml | 4 ++-- python/.coveragerc | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/flex-interactive.yml b/.github/workflows/flex-interactive.yml index df5147c38ee4..8bce6cf02a05 100644 --- a/.github/workflows/flex-interactive.yml +++ b/.github/workflows/flex-interactive.yml @@ -62,7 +62,7 @@ jobs: python3 -m pip install --no-cache-dir pytest pytest-cov pytest-timeout pytest-xdist python3 -m pytest -d --tx popen//python=python3 \ -s -v \ - --cov=graphscope --cov-config=python/.coveragerc --cov-report=xml --cov-report=term \ + --cov=graphscope --cov-config=${GITHUB_WORKSPACE}/python/.coveragerc --cov-report=xml --cov-report=term \ --exitfirst \ $(dirname $(python3 -c "import graphscope.gsctl as gsctl; print(gsctl.__file__)"))/tests/test_interactive.py diff --git a/.github/workflows/local-ci.yml b/.github/workflows/local-ci.yml index 958283226d58..a85ed99b3aa0 100644 --- a/.github/workflows/local-ci.yml +++ b/.github/workflows/local-ci.yml @@ -385,7 +385,7 @@ jobs: python3 -m pytest -d --tx popen//python=python3 \ -s -v \ - --cov=graphscope --cov-config=python/.coveragerc --cov-report=xml --cov-report=term \ + --cov=graphscope --cov-config=${GITHUB_WORKSPACE}/python/.coveragerc --cov-report=xml --cov-report=term \ --exitfirst \ $(dirname $(python3 -c "import graphscope; print(graphscope.__file__)"))/tests/unittest diff --git a/VERSION b/VERSION index 697f087f376a..ae6dd4e20324 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.28.0 +0.29.0 diff --git a/charts/graphscope-store/Chart.yaml b/charts/graphscope-store/Chart.yaml index 54965d4ee2f4..e83cf1d41674 100644 --- a/charts/graphscope-store/Chart.yaml +++ b/charts/graphscope-store/Chart.yaml @@ -19,7 +19,7 @@ sources: maintainers: - name: GraphScope url: https://github.com/alibaba/graphscope -version: 0.28.0 +version: 0.29.0 dependencies: - condition: kafka.enabled diff --git a/charts/graphscope-store/values.yaml b/charts/graphscope-store/values.yaml index b3eec69bbcff..045b358c2380 100644 --- a/charts/graphscope-store/values.yaml +++ b/charts/graphscope-store/values.yaml @@ -25,7 +25,7 @@ image: registry: registry.cn-hongkong.aliyuncs.com repository: graphscope/graphscope-store # Overrides the image tag whose default is the chart appVersion. - tag: "0.28.0" + tag: "0.29.0" digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -259,7 +259,7 @@ portal: coordinatorImage: registry: registry.cn-hongkong.aliyuncs.com repository: graphscope/coordinator - tag: "0.28.0" + tag: "0.29.0" ## Service parameters ## service: diff --git a/charts/graphscope/Chart.yaml b/charts/graphscope/Chart.yaml index e739fc8349bf..633f343f3fe4 100644 --- a/charts/graphscope/Chart.yaml +++ b/charts/graphscope/Chart.yaml @@ -26,10 +26,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.28.0 +version: 0.29.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.28.0" +appVersion: "0.29.0" diff --git a/python/.coveragerc b/python/.coveragerc index 4149df685d97..d1fe44c46478 100644 --- a/python/.coveragerc +++ b/python/.coveragerc @@ -2,5 +2,5 @@ omit = */graphscope/learning/* */graphscope/nx/* - */graphscope/flex/rest/* + */graphscope/flex/* */jupyter/graphscope/node_modules/.*