https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: 49c72d1da34a9eb826a7ff12b6257be87481c6f3 authored by Bouwe Andela on 06 August 2018, 14:45:50 UTC
Install cis with conda, PyPI version is outdated
Tip revision: 49c72d1
.codacy.yml
# codacy configuration file

---

engines:
    coverage:
        enabled: true
        exclude_paths: [
            'tests',
        ]
    metrics:
        enabled: true
    duplication:
        enabled: true
    prospector:
        enabled: true
    pylint:
        enabled: true
        python_version: 3

exclude_paths: [
    'doc/sphinx/**',
    'esmvaltool/doc/sphinx/**',
    # cmor tables
    'esmvaltool/interface_scripts/cmip*-cmor-tables/**',
    # old stuff
    'backend/**',
    'diag_scripts/**',
    'interface_data/**',
    'interface_scripts/**',
    'main.py',
    'nml/**',
    'plot_scripts/**',
    'reformat_scripts/**',
    'variable_defs/**',
]
back to top