Skip to content

Commit 13b94a7

Browse files
committed
Merge pull request numenta#751 from DavidRagazzi/master
Integration with nupic.core API
2 parents 8ac68a6 + c757014 commit 13b94a7

File tree

10 files changed

+981
-633
lines changed

10 files changed

+981
-633
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,5 @@ configure.ac
7474
# /py/nupic/frameworks/prediction/
7575
/py/nupic/frameworks/prediction/.project
7676
/py/nupic/frameworks/prediction/.pydevproject
77+
78+
nta

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,21 @@ install:
5454
- pip install -q -r $NUPIC/external/common/requirements.txt
5555
- "mkdir -p $TRAVIS_BUILD_DIR/build/scripts"
5656
- "cd $TRAVIS_BUILD_DIR/build/scripts"
57-
- "cmake $NUPIC"
57+
- "cmake $NUPIC -DPROJECT_BUILD_RELEASE_DIR:STRING=$NTA"
5858
- "make -j3"
5959
- "cd"
60+
61+
# Add more environment variables
62+
- "export PYTHONPATH=$PYTHONPATH:$NTA/lib/python$PY_VERSION/site-packages"
63+
- "export NTA_ROOTDIR=$NTA"
6064

6165
script:
66+
- "cd $TRAVIS_BUILD_DIR/build/scripts"
6267
# legacy binary tests
63-
- "$NTA/bin/htmtest"
64-
# (not quite everything, really)
65-
- "$NTA/bin/testeverything"
68+
- "make tests_pyhtm"
6669
# actual unit tests
67-
- "cd $NUPIC"
68-
- "$NUPIC/run_tests.sh --all"
70+
- "make tests_run_all"
71+
- "cd"
6972

7073
# run all example files
7174
# examples/bindings

0 commit comments

Comments
 (0)