projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b136658
)
Makefile: add test_python target, added to .travis.yml
author
Paul Brossier
<piem@piem.org>
Fri, 22 Apr 2016 00:05:39 +0000
(
02:05
+0200)
committer
Paul Brossier
<piem@piem.org>
Fri, 22 Apr 2016 00:05:39 +0000
(
02:05
+0200)
.travis.yml
patch
|
blob
|
history
Makefile
patch
|
blob
|
history
diff --git
a/.travis.yml
b/.travis.yml
index
dfe89cf
..
defd1c9
100644
(file)
--- a/
.travis.yml
+++ b/
.travis.yml
@@
-82,6
+82,7
@@
addons:
script:
- make build
- make build_python
+ - make test_python
- make clean_python
- make clean
- make distcheck
diff --git
a/Makefile
b/Makefile
index
1b58562
..
64f3211
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-24,6
+24,9
@@
build: configure
build_python:
cd python && ./setup.py build
+test_python:
+ cd python && ./setup.py develop && ./tests/run_all_tests
+
clean_python:
cd python && ./setup.py clean