Skip to content

Commit

Permalink
Separate the pytest in ci to avoid OOM (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
acezen committed Jul 14, 2021
1 parent 55adea9 commit 3571ca4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,10 @@ jobs:
python3 -m pytest --exitfirst -s -v python/graphscope/nx/tests/classes
python3 -m pytest --exitfirst -s -v python/graphscope/nx/tests/test_nx.py
python3 -m pytest --exitfirst -s -v python/graphscope/nx/tests/test_ctx_builtin.py
python3 -m pytest --exitfirst -s -v python/graphscope/nx/tests/algorithms/builtin
python3 -m pytest --exitfirst -s -v python/graphscope/nx/tests/algorithms/builtin \
--ignore=python/graphscope/nx/tests/algorithms/builtin/test_shortest_paths.py
# a hack solution to avoid oom.
python3 -m pytest --exitfirst -s -v python/graphscope/nx/tests/algorithms/builtin/test_shortest_paths.py
python3 -m pytest --exitfirst -s -v python/graphscope/nx/tests/test_utils.py
pkill -TERM etcd || true
Expand Down

0 comments on commit 3571ca4

Please sign in to comment.