You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can name tests individually, e.g. say ./tests/matrix/VectorAPIUTest from the build directory.
There are also four custom targets to run subsests of the unit tests make test_query, make test_python a few others (adding them to README now). There is no test-sql-only target, but I will add that now.
When I run unit tests with
make -j8 test
, all tests except 92/154 (VectorAPIUTest) pass.The error at the top of the stack trace is:
I've traced it to this line of code
atomspace/tests/matrix/VectorAPIUTest.cxxtest
Line 175 in 6617752
When I modify it with the correct credentials, the test passes. Should this be trying to read creds from
lib/atomspace-test.conf
instead?Note that there's another instance of this hardcoded creds later on in the file, but I didn't need to change that to get the test passing:
atomspace/tests/matrix/VectorAPIUTest.cxxtest
Line 451 in 6617752
Side question: How do I run a specific test instead of running all tests with
make -j8 test
?The text was updated successfully, but these errors were encountered: