2
0
mirror of https://github.com/gradio-app/gradio.git synced 2025-01-12 10:34:32 +08:00
gradio/test
Hannah 3539787ebb
Add line numbering and collapse/expand logic to gr.JSON ()
* add line numbers and collapse + expand logic

* add story test and style tweaks

* add changeset

* allow expanding via preview

* story tweaks

* remove mobile/desktop story tests

* remove unused thing

* add open param

* amend test

* * add cm-like theme colors
* prevent copy + pasting line numbers and toggle
* a11y tweaks

* update lines on rerender

* fix test

* fix test

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-07-30 23:58:03 +01:00
..
components Add line numbering and collapse/expand logic to gr.JSON () 2024-07-30 23:58:03 +01:00
golden updated test images 2022-03-17 10:45:48 -07:00
test_files Add Timer component () 2024-06-28 16:53:44 -07:00
tmp End-to-end UI tests with Selenium () 2020-10-23 18:28:30 +04:00
__init__.py blocks-components-tests 2022-03-30 13:08:34 +03:00
conftest.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
README.md fixed typo () 2023-12-29 08:17:57 -08:00
requirements.in Add support for diffuser pipelines in gr.Interface.from_pipeline(). () 2024-03-08 11:53:38 -08:00
requirements.txt gr.DateTime component () 2024-07-10 20:55:45 -07:00
test_analytics.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_api_info.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_blocks.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_buttons.py Add event listener support to render blocks () 2024-05-22 14:51:53 -07:00
test_chat_interface.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_components.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_custom_component_compatibility.py upgrade ruff test dependency to ruff==0.4.1 () 2024-04-23 09:16:58 -07:00
test_events.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_external.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_flagging.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_gradio_component_cli.py Fix multimodal textbox custom components () 2024-07-10 13:09:08 +02:00
test_helpers.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_http_server.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_interfaces.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_networking.py Remove Ruff and Uvicorn in Wasm env () 2024-03-22 17:32:59 +09:00
test_pipelines.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_processing_utils.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_queueing.py Add Timer component () 2024-06-28 16:53:44 -07:00
test_reload.py Remove Ruff and Uvicorn in Wasm env () 2024-03-22 17:32:59 +09:00
test_routes.py Extend pyright to cover tests as well () 2024-07-21 19:55:18 -07:00
test_theme_sharing.py Allow mounted Gradio apps to work with external / arbitrary authentication providers () 2024-03-05 12:41:39 -08:00
test_tunneling.py Version 4 development branch () 2023-10-31 04:46:02 +00:00
test_utils.py Allows updating the dataset of a gr.Examples () 2024-07-15 09:19:52 -07: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 testdata resides within _gradio/test_data and all test_files reside 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.