https://github.com/alkaline-ml/pmdarima
Raw File
Tip revision: 1545afc23c0ed4acdad51235e859c70ab69cf1d6 authored by Taylor Smith on 05 June 2017, 12:18:22 UTC
[ci skip] re-version
Tip revision: 1545afc
setup.cfg
# This is adapted from sklearn's setup cfg.

[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 = pyramid

detailed-errors = 1
with-doctest = 1
doctest-tests = 1
doctest-extension = rst
doctest-fixtures = _fixture
ignore-files=^setup\.py$

[wheelhouse_uploader]
artifact_indexes=
    # OSX wheels built by travis (only for specific tags):
    http://wheels.scipy.org
back to top