All Projects → numenta → nupic.regression

numenta / nupic.regression

Licence: AGPL-3.0 license
Regression test suite for NuPIC

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

NuPIC Regression Tests

The tests in this repository are regression tests. These tests are meant to maintain a standard of performance by running longer functional tests for NuPIC after every successful build of the nupic master branch in Travis-CI.

What kind of tests to write

The tests in this repository are Python unittest2 tests (but they are not unit tests). These tests should not test units of code, but the system as a whole. For example, one test might be to feed in a certain set of input data and assert that 5-step ahead predictions are within a defined range of error after 1000 rows of data.

How to add tests

Each test should describe exactly what it is testing in a docstring, and extent the TestCase class for automatic inclusion in the test suite. Please see example test(s) in the tests directory for details.

Running regression tests locally

# Clone nupic at ./nupic/ and install
# Clone NAB at ./NAB/ and install
# Run nupic.regression tests
py.test tests/

Included in tests/anomaly/ is a regression test for NAB. To run locally you must have a NAB environment variable setup that points to your NAB clone repositiory:

export NAB='path/to/NAB/'
py.test tests/anomaly/nab/ # run NAB regression test

Dependencies for running locally

pip install -r requirements.txt

How it works

On every build of the nupic master branch in Travis-CI, an archive of the release folder (including pip requirements) is uploaded to Amazon S3 for the latest commit SHA. When the nupic build completes, the tooling server updates the SHA stored in nupic_sha.txt to the latest SHA that ran in Travis-CI and pushes it to nupic.regression.master. This triggers a regression test run in Travis-CI.

When nupic.regression runs in Travis-CI, it downloads the archive for the nupic SHA specified in nupic_sha.txt into a local folder. Because the archive was build in the same Travis-CI environment as nupic.regression runs, the installation is compatible. All tests that comply with unittest2 format in the tests directory are run.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].