@@ -43,10 +43,14 @@ matrix:
4343 - travis_retry pip install --install-option="--no-cython-compile" Cython==0.24
4444 - python -c "from __future__ import print_function; import numpy; print(numpy.__version__)"
4545 - git clone --depth=1 https://github.com/libdynd/libdynd.git
46- - python setup.py install
46+ - python setup.py install --target=ndt
47+ - rm -rf build dist dynd.ndt.egg-info
48+ - echo dynd.ndt >> requirements.txt
49+ - python setup.py install --target=nd
4750 script :
4851 - pushd ..
49- - python -c "import dynd; dynd.test(verbosity=2, exit=True)"
52+ - python -m dynd.ndt.test
53+ - python -m dynd.nd.test
5054 - popd
5155 - language : objective-c
5256 os : osx
@@ -73,12 +77,17 @@ script:
7377 - export PATH=$HOME/miniconda${Miniconda_ver}/bin:$PATH
7478 - conda install --yes conda-build jinja2
7579 - if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then conda install --yes anaconda-client; fi
76- - conda build conda.recipe --channel dynd/channel/dev
80+ - conda build conda/ndt.recipe --channel dynd/channel/dev
81+ - rm -rf build dist dynd.ndt.egg-info
82+ - echo dynd.ndt >> requirements.txt
83+ - conda build conda/nd.recipe --channel dynd/channel/dev
7784 - conda install --yes numpy libdynd --channel dynd/channel/dev
78- - conda install $(conda build --output conda.recipe | grep bz2)
85+ - conda install $(conda build --output conda/ndt.recipe | grep bz2)
86+ - conda install $(conda build --output conda/nd.recipe | grep bz2)
7987
8088after_success :
81- - if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then anaconda --token $ANACONDA_TOKEN upload $(conda build --output conda.recipe) --user dynd --channel dev; fi
89+ - if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then anaconda --token $ANACONDA_TOKEN upload $(conda build --output conda/ndt.recipe) --user dynd --channel dev; fi
90+ - if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then anaconda --token $ANACONDA_TOKEN upload $(conda build --output conda/nd.recipe) --user dynd --channel dev; fi
8291
8392notifications :
8493 email : false
0 commit comments