django-localized-fields/.scrutinizer.yml
Swen Kooij 5e58bc6e24 Revert "Use standard postgres on Scrutinizer"
This reverts commit 04a750053f0aea3a9b947d67f9fdc1892cdfc90a.
2018-03-31 16:59:11 +03:00

35 lines
853 B
YAML

checks:
python:
code_rating: true
duplicate_code: true
tools:
pylint:
python_version: '3'
config_file: .pylintrc
filter:
excluded_paths:
- '*/tests/*'
- '*/migrations/*'
build:
environment:
python: '3.5.0'
variables:
DJANGO_SETTINGS_MODULES: settings
DATABASE_URL: postgres://scrutinizer:scrutinizer@localhost:5434/localized_fields
postgresql: true
dependencies:
override:
- 'pip install -r requirements/test.txt'
tests:
override:
-
command: pep8 ./localized_fields/
-
command: flake8 ./localized_fields/
-
command: tox
coverage:
file: '.coverage'
format: 'py-cc'