diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cc078c3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: +- "3.5" + +# command to install dependencies +install: "pip install -r requirements.txt" + +# command to run tests +script: nosetests --with-coverage --cover-package=music_feats + +notifications: + email: false + +sudo: false diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6e89a76 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +scipy +numpy +librosa +coverage