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

grouping large vector tests based on their type and adding their nightly test function #17306

Merged
merged 1 commit into from
Jan 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1525,6 +1525,16 @@ nightly_test_large_tensor() {
nosetests-3.4 tests/nightly/test_large_array.py
}

#Test Large Vectors
nightly_test_large_vector() {
set -ex
export PYTHONPATH=./python/
export DMLC_LOG_STACK_TRACE_DEPTH=10
nosetests-3.4 tests/nightly/test_large_vector.py:test_tensor
nosetests-3.4 tests/nightly/test_large_vector.py:test_nn
nosetests-3.4 tests/nightly/test_large_vector.py:test_basic
}

#Tests Amalgamation Build with 5 different sets of flags
nightly_test_amalgamation() {
set -ex
Expand Down
Loading