Skip to content

Commit

Permalink
Default CI testing is to skip slow tests
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
pwolfram committed Mar 28, 2017
1 parent b314f07 commit 014a928
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ install:
build: false

test_script:
- "py.test xarray --verbose"
- "py.test xarray --verbose --skip-slow"

0 comments on commit 014a928

Please sign in to comment.