Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failure in networkx forward CI #2204

Merged
merged 1 commit into from
Nov 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/networkx-forward-algo-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Build GAE and coordinator
run: |
pushd ${GITHUB_WORKSPACE}
make gae ENABLE_JAVA_SDK=OFF BUILD_TEST=OFF NUMPROC=1
make gae-install ENABLE_JAVA_SDK=OFF BUILD_TEST=OFF NUMPROC=1
# also make coordinator and client for python test
make coordinator && make client
popd
Expand All @@ -36,6 +36,7 @@ jobs:
DEPLOYMENT: 'standalone'
run: |
cd ${GITHUB_WORKSPACE}/python
export GRAPHSCOPE_HOME=/opt/graphscope
python3 -m pytest --cov=graphscope --cov-config=.coveragerc --cov-report=xml \
--cov-report=term -s -v -m "not slow" graphscope/nx/algorithms/tests/forward

Expand Down