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

Add vor_cerebellum to testing #102

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
12 changes: 12 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ pipeline {
sh 'support/gitclone.sh https://github.com/SpiNNakerManchester/sPyNNaker8NewModelTemplate.git'
sh 'support/gitclone.sh https://github.com/SpiNNakerManchester/microcircuit_model.git'
sh 'support/gitclone.sh https://github.com/SpiNNakerManchester/SpiNNGym.git'
sh 'support/gitclone.sh https://github.com/SpiNNakerManchester/vor_cerebellum.git'
sh 'support/gitclone.sh https://github.com/SpiNNakerManchester/MarkovChainMonteCarlo.git'
sh 'support/gitclone.sh https://github.com/SpiNNakerManchester/TestBase.git'
sh 'support/gitclone.sh https://github.com/SpiNNakerManchester/SpiNNaker_PDP2.git'
Expand Down Expand Up @@ -113,6 +114,7 @@ pipeline {
run_in_pyenv('pip install ./sPyNNaker8NewModelTemplate[test]')
run_in_pyenv('pip install ./SpiNNakerGraphFrontEnd[test]')
run_in_pyenv('pip install ./SpiNNGym[test]')
run_in_pyenv('pip install ./vor_cerebellum[test]')
run_in_pyenv('pip install ./MarkovChainMonteCarlo[test]')
// Due to the binaries being outside of the package
run_in_pyenv('pip install -e ./SpiNNaker_PDP2[test]')
Expand Down Expand Up @@ -190,6 +192,7 @@ pipeline {
run_pytest('SpiNNakerGraphFrontEnd/unittests', 1200, 'SpiNNakerGraphFrontEnd', 'unit', 'auto')
run_pytest('PyNN8Examples/unittests', 1200, 'PyNN8Examples', 'unit', 'auto')
run_pytest('SpiNNGym/unittests', 1200, 'SpiNNGym', 'unit', 'auto')
run_pytest('vor_cerebellum/unittests', 1200, 'vor_cerebellum', 'unit', 'auto')
run_pytest('MarkovChainMonteCarlo/unittests', 1200, 'SpiNNaker_PDP2', 'unit', 'auto')
run_pytest('SpiNNaker_PDP2/unittests', 1200, 'SpiNNaker_PDP2', 'unit', 'auto')
run_in_pyenv('python -m spinn_utilities.executable_finder')
Expand Down Expand Up @@ -256,6 +259,15 @@ pipeline {
}
}
}
stage('Run vor_cerebellum Integration Tests') {
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
run_in_pyenv('python vor_cerebellum/integration_tests/script_builder.py')
run_pytest('vor_cerebellum/integration_tests', 12000, 'vor_cerebellum_Integration', 'integration', 'auto')
}
}
}
stage('Run MarkovChainMonteCarlo Integration Tests') {
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ In particular, tests:
* [Markov Chain Monte Carlo](https://github.com/SpiNNakerManchester/MarkovChainMonteCarlo)
* [SpiNNaker_PDP2](https://github.com/SpiNNakerManchester/SpiNNaker_PDP2)
* [Visualiser](https://github.com/SpiNNakerManchester/Visualiser)
* [ICub VOR-cerebellum examples](https://github.com/SpiNNakerManchester/vor_cerebellum)
* [Whole Machine Tests](https://github.com/SpiNNakerManchester/sPyNNaker/tree/master/test_whole_board) (overnight only)

# Testing a branch
Expand Down