https://github.com/alkaline-ml/pmdarima
Raw File
Tip revision: 23d4d0db9564f1a8fa16b3b769396164ae9f9383 authored by Aaron Smith on 02 December 2020, 16:09:46 UTC
Update what's new for 1.8.0 (#403)
Tip revision: 23d4d0d
.codecov.yml
# https://gist.github.com/stevepeak/53bee7b2c326b24a9b4a

# Prevent codecov from commenting
comment: false

coverage:
  precision: 2
  round: down

  status:
    project:
      default:
        target: 95%
        informational: true
        branches:
          - master

    # The patch just adds noise to the PRs. We only really care about overall
    # coverage
    patch: off

ignore:
- "**/setup.py"
- "*/pmdarima/__check_build/*"
- "*/pmdarima/_build_utils/*"
- "*/pmdarima/_config.py"
- "*/pmdarima/__init__.py"
- "*/pmdarima/compat/matplotlib.py"
- "*/pmdarima/utils/tests/test_vis.py"
- "*/pmdarima/utils/visualization.py"
back to top