We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c527c1b commit 6170d65Copy full SHA for 6170d65
2 files changed
.travis.yml
@@ -35,6 +35,6 @@ install:
35
- conda install landlab jupyter -c landlab
36
- conda info -a && conda list
37
script:
38
-- ./find_notebooks.py . | ./run_notebook.py --file=- --exclude=*intro* --exlude=*flow_direction*
+- ./run-all-tests.sh
39
virtualenv:
40
system_site_packages: false
run-all-tests.sh
@@ -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