Skip to content

Commit 6170d65

Browse files
committed
Add script to find and run all tests.
1 parent c527c1b commit 6170d65

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ install:
3535
- conda install landlab jupyter -c landlab
3636
- conda info -a && conda list
3737
script:
38-
- ./find_notebooks.py . | ./run_notebook.py --file=- --exclude=*intro* --exlude=*flow_direction*
38+
- ./run-all-tests.sh
3939
virtualenv:
4040
system_site_packages: false

run-all-tests.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#! /bin/bash
2+
3+
EXCLUDES="--exclude=*intro* --exclude=*flow_direction*"
4+
5+
./run_notebook.py find . | ./run_notebook.py run --file=- $EXCLUDES

0 commit comments

Comments
 (0)