From 7b77861a7554930972eadbc6264ddab9c76a0ce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 28 Apr 2013 08:50:26 +0200 Subject: [PATCH] Move example runner loop to Travis config --- .travis.yml | 2 +- Makefile | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 818d938e..1d3c58ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,4 +31,4 @@ script: # run all examples - cd .. - "echo 'backend : Agg' > matplotlibrc" - - make run-all-examples + - for f in doc/examples/*.py; do python "$$f"; done diff --git a/Makefile b/Makefile index 1b77f1a1..a0ca9745 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,3 @@ test: coverage: nosetests skimage --with-coverage --cover-package=skimage - -run-all-examples: - for f in doc/examples/*.py; do python "$$f"; done