Skip to content

Commit

Permalink
Enable tutorial tests in the Nightly test suite.
Browse files Browse the repository at this point in the history
The tutorial tests were disabled due to a flaky port acquisition
strategy (apache#11170). The issue has been remedied (apache#11120). This change
re-enables the tutorial tests in the Nightly test suite.
  • Loading branch information
vishaalkapoor committed Oct 11, 2018
1 parent 06bf600 commit e472e5d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tests/nightly/JenkinsfileForBinaries
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,28 @@ core_logic: {
utils.docker_run('ubuntu_nightly_gpu', 'nightly_straight_dope_python3_multi_gpu_tests', true)
}
}
},
'Tutorial Tests: Python 2 GPU': {
node(NODE_LINUX_GPU) {
ws('workspace/it-tutorials-py2') {
timeout(time: 60, unit: 'MINUTES') {
init_git()
unpack_lib('gpu')
docker_run('ubuntu_gpu', 'tutorialtest_ubuntu_python2_gpu', true, '3g')
}
}
}
},
'Tutorial Tests: Python 3 GPU': {
node(NODE_LINUX_GPU) {
ws('workspace/it-tutorials-py3') {
timeout(time: 60, unit: 'MINUTES') {
init_git()
unpack_lib('gpu')
docker_run('ubuntu_gpu', 'tutorialtest_ubuntu_python3_gpu', true, '3g')
}
}
}
}
}
}
Expand Down

0 comments on commit e472e5d

Please sign in to comment.