diff options
author | Steven Silvester | 2016-01-22 12:39:52 -0600 |
---|---|---|
committer | Steven Silvester | 2016-01-22 12:39:52 -0600 |
commit | d2c318cd399c476a33c9e51b929c34e7260639a4 (patch) | |
tree | f1bf0cc1add468aac2db7dc91858f43e7ce6fe02 /.travis.yml | |
parent | 6283b89c4cd612ec18b42e9fef0415a9a48e8510 (diff) | |
download | scilab_kernel-d2c318cd399c476a33c9e51b929c34e7260639a4.tar.gz scilab_kernel-d2c318cd399c476a33c9e51b929c34e7260639a4.tar.bz2 scilab_kernel-d2c318cd399c476a33c9e51b929c34e7260639a4.zip |
Upgrade to metakernel and add tests and travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..5cecc5e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: python +sudo: false +python: + - "3.5" +install: + # download Scilab and add it to the path + - \ + if [[ $ENV == python=3.3* ]]; then + wget http://www.scilab.org/download/5.4.1/scilab-5.4.1.bin.linux-x86_64.tar.gz -O scilab.tar.gz; + tar xfz scilab.tar.gz; + export PATH="$PWD/scilab-5.4.1/bin:$PATH"; + else + wget http://www.scilab.org/download/5.5.1/scilab-5.5.1.bin.linux-x86_64.tar.gz -O scilab.tar.gz; + tar xfz scilab.tar.gz; + export PATH="$PWD/scilab-5.5.1/bin:$PATH"; + fi + - scilab -version; true + - pip install ipykernel jupyter_client traitlets jupyter_kernel_test flit + - flit install + - python -m scilab_kernel.install +script: + - python test_scilab_kernel.py |