tests fail on cloned repo
See original GitHub issueHi everyone, I just cloned the repo and run the py.test
and I got the following result.
../../../../anaconda2/lib/python2.7/site-packages/theano/gof/op.py:633: ValueError
======================================== 5 failed, 252 passed in 2327.59 seconds =========================================
My OS is Ubuntu 16.04 and my python version is 2.7.13 installed via anaconda. Also Theano 0.8.2, tensorflow 0.12.1 and Keras 1.2.0.
The failed tests are the following:
gw1] FAILED tests/keras/backend/test_backends.py::TestBackend::test_nn_operations
[gw0] FAILED tests/keras/backend/test_backends.py::TestBackend::test_function
[gw1] FAILED tests/keras/backend/test_backends.py::TestBackend::test_random_normal
[gw1] FAILED tests/keras/backend/test_backends.py::TestBackend::test_random_uniform
[gw1] FAILED tests/keras/backend/test_backends.py::TestBackend::test_random_binomial
Is that normal? Also I have tensorflow as my main backend.
I’m trying to do a pull request to add another model u-net
in the applications
but I can’t proceed since I want to also run the tests after the addition of the new model.
Issue Analytics
- State:
- Created 7 years ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
Unable to run C# unit tests after cloning repository
I am trying to run unit tests in a C# project that I have been working on, I have it in a repository...
Read more >NPM run tests fails on a fresh cloned repo · Issue #2438 - GitHub
I freshly cloned repo with 3.18.3 Tag and was able to build it successfully however when I ran the tests test/build-artifacts/umd.js keeps ...
Read more >Message - The cloning process failed. - SmartBear Support
This message is displayed when TestComplete failed to clone a project element. This can happen, for example, if the current user does not...
Read more >Failing to clone repository causes tests to fail (#27506) - GitLab
Failing to clone repository causes tests to fail. Overview. Most of our tests depend on https://gitlab.com/gitlab-org/ci-cd/ ...
Read more >Create Jenkins Job and Clone Repository From GitHub
Create a new Jenkins job called 'Clone-with-https', move to the “Source Control Management” setting, and choose “Git” options if you cannot see the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
It’s looks like, from all of the Theano error messages, that you’re running Theano with
compute_test_value=raise
, or your .theano config is corrupted. Check this issue.No worries, and good luck with your new application!