Test Failed
Push — master ( c12ddf...549bd8 )
by Dominik
09:44
created

Checkout Config

build:
    environment:
        python: '3.5.0'
    tests:
        before:
            - 'pip3 install pylint Coverage'
        override:
            -
                command: 'coverage run --include="*osmalchemy*" setup.py test'
                coverage:
                    file: '.coverage'
                    format: 'py-cc'
                idle_timeout: 720
            -
                command: 'pylint osmalchemy --output-format=parseable --reports=n --include-naming-hint=y | tee pylint-data'
                analysis:
                    file: 'pylint-data'
                    format: 'pylint-parseable'
checks:
    python:
        code_rating: true
        duplicate_code: true
filter:
    excluded_paths:
        - 'tests/*'