Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
no edible install for cupy
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Feb 19, 2021
1 parent 127fb08 commit 3d15ddb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions test_cupy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

. ./environment.sh

pip install --user -e cupy/[jenkins]
pip install --user cupy/[jenkins]

cd cupy
cd cupy/tests

# Shows cupy config before running the tests
python -c 'import cupy; cupy.show_config()'
Expand All @@ -26,7 +26,7 @@ else
pytest_opts+=(-m 'not slow')
fi

python -m pytest "${pytest_opts[@]}" tests
python -m pytest "${pytest_opts[@]}" .

# Submit coverage to Coveralls
python ../push_coveralls.py
Expand Down
2 changes: 1 addition & 1 deletion test_cupy_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

. ./environment.sh

pip install --user -e cupy/[jenkins]
pip install --user cupy/[jenkins]

cd cupy/docs

Expand Down
6 changes: 3 additions & 3 deletions test_cupy_slow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

. ./environment.sh

pip install --user -e cupy/[jenkins]
pip install --user cupy/[jenkins]

cd cupy
cd cupy/tests

export CUPY_DUMP_CUDA_SOURCE_ON_ERROR=1

Expand All @@ -23,4 +23,4 @@ else
pytest_opts+=(-m 'slow')
fi

python -m pytest "${pytest_opts[@]}" tests
python -m pytest "${pytest_opts[@]}" .

0 comments on commit 3d15ddb

Please sign in to comment.