https://github.com/alkaline-ml/pmdarima
Raw File
Tip revision: 7b5306a5d69cbf68a15de0a2ad1f52327936d3e1 authored by Taylor G Smith on 26 March 2019, 22:34:28 UTC
[HOTFIT] :fire: Fix issue 104
Tip revision: 7b5306a
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 = pytest

[tool:pytest]
# disable-pytest-warnings should be removed once we drop nose and we
# rewrite tests using yield with parametrize
addopts =
    --disable-pytest-warnings

[metadata]
description-file = README.md
back to top