We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d734191 commit 22c4ebbCopy full SHA for 22c4ebb
.coveragerc
@@ -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
17
+ .eggs/*
18
+ /home/travis/.local/lib/*
19
+ test*.py
20
+ setup.py
21
+ __init__.py
22
23
.travis.yml
@@ -56,10 +56,10 @@ install:
56
- conda info -a
57
58
# Install and test
59
+ - make -C nested_sampling/clustering;
60
- if [[ "$INSTALL" == "yes" ]]; then
61
python setup.py install;
62
else
- make -C nested_sampling/clustering;
63
export PYTHONPATH=$PWD;
64
export LD_LIBRARY_PATH="${PWD}/nested_sampling/clustering;${LD_LIBRARY_PATH}";
65
fi
0 commit comments