-
Notifications
You must be signed in to change notification settings - Fork 6
/
.scrutinizer.yml
39 lines (36 loc) · 991 Bytes
/
.scrutinizer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# scrutinizer-ci.com configuration
# language: python
imports:
- python
build:
environment:
python: 3.7.4
tests:
before:
- 'python setup.py install'
- 'pip install "python-dotenv>=0.7.1"'
- 'pip install "Pillow>=5.0.0"'
- 'pip install "requests_mock>=1.4.0"'
- 'pip install nose-exclude'
override:
- command: 'nosetests --exclude-dir=tests/custom'
nodes:
analysis:
tests:
override:
- py-scrutinizer-run
coverage:
tests:
before:
- 'python setup.py install'
- 'pip install "python-dotenv>=0.7.1"'
- 'pip install "Pillow>=5.0.0"'
- 'pip install "requests_mock>=1.4.0"'
- 'pip install nose-exclude'
- 'pip install coveralls'
override:
- command: 'nosetests --exclude-dir=tests/custom --with-coverage --cover-package=saucenao'
coverage:
file: '.coverage'
config_file: '.coveragerc'
format: 'py-cc'