-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.scrutinizer.yml
87 lines (84 loc) · 2.76 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
checks:
python:
code_rating: true
duplicate_code: true
build:
# environment:
# variables:
# BIGARTM_PARENT_DIR: $(echo $PWD)
# COLLECTIONS_DIR: "$(echo $PWD)/collections"
# apt_packages:
# - make
# - cmake
# - build-essential
# - libboost-all-dev
# - gfortran
# - libblas-dev
# - liblapack-dev
# Languages
nodes:
analysis:
project_setup:
override:
- 'true'
tests:
override:
- py-scrutinizer-run
-
command: pylint-run
use_website_config: true
tests:
tests:
override:
- 'true'
# environment:
# python:
# version: "3.6.0"
## variables:
## BIGARTM_PARENT_DIR: $(echo $PWD)
## COLLECTIONS_DIR: "$(echo $PWD)/collections"
# apt_packages:
# - make
# - cmake
# - build-essential
# - libboost-all-dev
# - gfortran
# - libblas-dev
# - liblapack-dev
## requires:
# # will only run when my-first-test passes
## - node: my-first-test
# # will only run when no failure conditions were met in the analysis
## - analysis
# dependencies:
# before:
# - pip install tox
# - export BIGARTM_PARENT_DIR=$(echo $PWD)
# - export COLLECTIONS_DIR="$(echo $PWD)/collections"
# - echo EDW $BIGARTM_PARENT_DIR
# - echo EDW $COLLECTIONS_DIR
# - mkdir $COLLECTIONS_DIR
# - pip install -U setuptools>=40.0.0
# - git clone https://github.com/bigartm/bigartm.git
# - chmod +x .travis/build-n-wheel.sh
# - chmod +x .travis/select-wheel.sh
# - .travis/build-n-wheel.sh 3 6
# - export BIGARTM_WHEEL=$(.travis/select-wheel.sh 3 6)
# - ls $BIGARTM_WHEEL
# tests:
# before:
# - pip install coverage
# override:
# - tox -e clean,check,py36
# -
# command: coverage
# coverage:
# file: .coverage
# config_file: '.coveragerc'
# format: py-cc
filter:
excluded_paths:
- '*/test/*'
- '*/build/*'
dependency_paths:
- 'lib/*'