-
Notifications
You must be signed in to change notification settings - Fork 19.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed tests in the last release (v3.8.0) test suite #20764
Comments
Looking at our GitHub actions here shows the backend specific tests. For example, I think the only test that is unexpected to fail here is |
Thank you for the detailed feedback. I re-executed the command in editable mode and in the v3.8.1 tag like this:
I had no issues. Additionally, I ran the |
Awesome! That's great to hear! Thanks for re-running the command and isolating the test. Yeah, it likely was a false failure caused by other failing tests. |
Summary:
While attempting to install Keras in editable mode and running the test suite, several tests failed. I now detail the steps I followed to reproduce the errors.
Steps to Reproduce:
git clone https://github.com/keras-team/keras.git cd keras
python3.10 -m pip install -e .
python3.10 -u -m pytest --cov=keras --cov-report=html:htmlcov --cov-report=xml:coverage.xml > keras_golden_run
Observed Behavior:
The test suite reported the following short summary:
Errors include:
integration_tests/jax_custom_fit_test.py
.integration_tests/tf_distribute_training_test.py
.applications_test.py
cases involvingEfficientNetV2
.Environment Details:
Additional Notes:
pip_build.py
as I wanted to install Keras in editable mode.integration_tests
errors suggest issues with the test setup forjax
andtorch
.applications_test.py
errors may involve TensorFlow device configurations or input shapes forEfficientNetV2
.Request for Help:
I expect the test suite to pass without any errors, or at least there should be no critical errors, so:
I guess that I should use both Jax and PyTorch as backends to run these tests, but maybe I can just ignore them if I am using TensorFlow. Or am I missing something? However, any assistance in resolving this issue would be greatly appreciated.
Thank you.
The text was updated successfully, but these errors were encountered: