2
0
mirror of https://github.com/gradio-app/gradio.git synced 2025-02-17 11:29:58 +08:00
gradio/test
Abubakar Abid 409593e9cc
Updates to the API endpoints / docs, and fixing the Theme builder ()
* view API fixes

* code snippet js

* changelog

* api name false

* examples

* client trigger tests

* fix typecheck

* black

* type

* typing

* typing

* update gif

* type ignore

* added tests

* format

* added test

* test

* fix guides

* snippet

* tests

* fix tests

* add test

* fix typing

* fix test

* remove comments
2023-06-29 14:05:25 -05:00
..
golden
test_files
tmp
__init__.py
conftest.py Temp file fixes () 2023-05-20 06:22:12 +09:00
README.md
requirements.in
requirements.txt Push to spaces () 2023-05-31 10:13:46 +09:00
test_analytics.py
test_blocks.py Updates to the API endpoints / docs, and fixing the Theme builder () 2023-06-29 14:05:25 -05:00
test_buttons.py Add a gr.ClearButton () 2023-06-13 19:18:14 -05:00
test_components.py Fix Wrong Deprecation Warning message for type/plot parameter () 2023-06-28 15:02:01 -04:00
test_events.py return a Dependency instance from Blocks.load event listener () 2023-05-29 13:52:23 -07:00
test_external.py Fix loading private Spaces () 2023-06-07 13:55:05 -05:00
test_flagging.py
test_helpers.py Updates to the API endpoints / docs, and fixing the Theme builder () 2023-06-29 14:05:25 -05:00
test_interfaces.py Updates to the API endpoints / docs, and fixing the Theme builder () 2023-06-29 14:05:25 -05:00
test_interpretation.py
test_mix.py
test_networking.py Allow passing FastAPI app options () 2023-05-20 18:10:00 +09:00
test_pipelines.py
test_processing_utils.py Temp file fixes () 2023-05-20 06:22:12 +09:00
test_queueing.py
test_reload.py
test_routes.py add app_kwargs for mount_gradio_app () 2023-06-15 06:57:09 -05:00
test_theme_sharing.py Amend error toast and pill styling () 2023-06-15 19:51:09 +02:00
test_tunneling.py
test_utils.py fix get_continuous_fn bug when having every () 2023-06-06 13:46:07 -05:00

Backend Testing Guidelines

  • All the tests should test Backend functionalities. Frontend functionalities and e2e tests are done in Frontend.
  • Make use of pytest fixtures whenever it is possible. With fixtures, objects with high initialize durations are reused within tests, ex. a client session.
  • All test_data resides within gradio/test_data and all test_files resides within test/test_files.
  • When doing network operations do not forget to make use of async to make tests faster.
  • Have clear class and function naming within the tests.
  • Short descriptions within test functions are great.
  • Library function docstrings is expected to contain an example, please add missing docstrings to the library while you are writing tests the related function.
  • Library docstring examples and descriptions are expected to align with tests, please fix divergent tests and library docstrings.