File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 26
26
timeout : 1600
27
27
- docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch nipype/testbench fmri_fsl_reuse Linear level1_workflow
28
28
- docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch nipype/testbench fmri_spm_nested Linear level1 l2pipeline
29
+ - docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch --entrypoint="/usr/bin/run_nosetests.sh" nipype/testbench --xunit-file="/scratch/nose/${CIRCLE_PROJECT_REPONAME}.xml :
30
+ timeout : 2600
31
+ post :
32
+ - mkdir -p ${CIRCLE_TEST_REPORTS}/nose
33
+ - mv ~/scratch/nose/${CIRCLE_PROJECT_REPONAME}.xml ${CIRCLE_TEST_REPORTS}/nose/
29
34
30
- # general:
35
+ general :
36
+ build_dir : " ~/scratch"
31
37
# artifacts:
32
38
# - "doc/_build/html"
33
39
# - "~/log.txt"
Original file line number Diff line number Diff line change @@ -3,5 +3,4 @@ for i in /etc/profile.d/*.sh; do
3
3
source $i
4
4
done
5
5
source activate nipypetests-2.7
6
- cd /root/examples
7
6
python /root/src/nipype/tools/run_examples.py $@
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ for i in /etc/profile.d/* .sh; do
3
+ source $i
4
+ done
5
+ source activate nipypetests-2.7
6
+ nosetests --with-doctest -c ./.noserc --logging-level=DEBUG --verbosity=3 $@
You can’t perform that action at this time.
0 commit comments