gradio/test/test_custom_component_compatibility.py
Aarni Koskela 05d8a3c803
Update ruff to 0.1.13, enable more rules, fix issues (#7061)
* add changeset

* Update ruff to version 0.1.13

* Correct ruff target version

* Enable more Ruff rules and fix issues

* Enable ARG and fix issues

* Enable PL lints, fix issues

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-02-01 11:32:40 -08:00

18 lines
533 B
Python

"""
This suite of tests is designed to ensure compatibility between the current version of Gradio
with custom components created using the previous version of Gradio.
"""
from pathlib import Path
from gradio_pdf import PDF
def test_processing_utils_backwards_compatibility():
pdf_component = PDF()
cached_pdf_file = pdf_component.as_example("test/test_files/sample_file.pdf")
assert (
cached_pdf_file
and Path(cached_pdf_file).exists()
and Path(cached_pdf_file).name == "sample_file.pdf"
)