From 014a928a0edb0225748465c1a4b8ad4c8cba92cd Mon Sep 17 00:00:00 2001 From: "Phillip J. Wolfram" Date: Tue, 28 Mar 2017 13:00:17 -0600 Subject: [PATCH] Default CI testing is to skip slow tests Note, when a user runs `py.test` locally, the slow tests will run. The slow tests can be skipped via running `py.test --skip-slow`. --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 13c5362e530..6102381108a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,7 +76,7 @@ install: - python setup.py install script: - - py.test xarray --cov=xarray --cov-report term-missing --verbose + - py.test xarray --cov=xarray --cov-report term-missing --verbose --skip-slow after_success: - coveralls diff --git a/appveyor.yml b/appveyor.yml index 9f04ad8534c..9be28d583fc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -38,4 +38,4 @@ install: build: false test_script: - - "py.test xarray --verbose" + - "py.test xarray --verbose --skip-slow"