forked from scikit-learn/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This config file is here to skip doctests on 32bit linux when running make or make test | ||
# For newer versions of nose, we can simply use "NOSE_IGNORE_CONFIG_FILES", which | ||
# we should do in the future. | ||
|
||
[aliases] | ||
# python2.7 has upgraded unittest and it is no longer compatible with some | ||
# of our tests, so we run all through nose | ||
test = nosetests | ||
|
||
[nosetests] | ||
# nosetests skips test files with the executable bit by default | ||
# which can silently hide failing tests. | ||
# There are no executable scripts within the scikit-learn project | ||
# so let's turn the --exe flag on to avoid skipping tests by | ||
# mistake. | ||
exe = 1 | ||
cover-html = 1 | ||
cover-html-dir = coverage | ||
cover-package = sklearn | ||
|
||
detailed-errors = 1 | ||
with-doctest = 0 |