Skip to content

Commit

Permalink
ci: improve codecov coverage (#4251)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 authored Sep 24, 2024
1 parent f9325f8 commit 43a6e96
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flex-interactive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/local-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.28.0
0.29.0
2 changes: 1 addition & 1 deletion charts/graphscope-store/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/graphscope-store/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions charts/graphscope/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion python/.coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
omit =
*/graphscope/learning/*
*/graphscope/nx/*
*/graphscope/flex/rest/*
*/graphscope/flex/*
*/jupyter/graphscope/node_modules/.*

0 comments on commit 43a6e96

Please sign in to comment.