Skip to content

Commit 22c4ebb

Browse files
ci: compile always, report coverage
1 parent d734191 commit 22c4ebb

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.coveragerc

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# .coveragerc to control coverage.py
3+
#
4+
5+
[run]
6+
branch = True
7+
omit =
8+
test*
9+
10+
11+
[report]
12+
exclude_lines =
13+
pragma: no cover
14+
def __repr__
15+
if __name__ == .__main__.
16+
omit =
17+
.eggs/*
18+
/home/travis/.local/lib/*
19+
test*.py
20+
setup.py
21+
__init__.py
22+
23+

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ install:
5656
- conda info -a
5757

5858
# Install and test
59+
- make -C nested_sampling/clustering;
5960
- if [[ "$INSTALL" == "yes" ]]; then
6061
python setup.py install;
6162
else
62-
make -C nested_sampling/clustering;
6363
export PYTHONPATH=$PWD;
6464
export LD_LIBRARY_PATH="${PWD}/nested_sampling/clustering;${LD_LIBRARY_PATH}";
6565
fi

0 commit comments

Comments
 (0)