test: add Gradio UI smoke test and CI test job - #17
Merged
Conversation
Adds tests/test_ui_smoke.py to verify the Gradio demo object and key UI components build correctly without model files. Updates CI to run pytest in a lightweight Python env before the Docker build step. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
tests/test_ui_smoke.pywith 5 assertions verifying the GradiodemoBlocksobject and key UI components (run_btn,file_input,gallery,log_output) are constructed with the correct Gradio types on startup.github/workflows/ci.ymlwith a newtestjob that installs lightweight deps (pytest,gradio,numpy) and runspytest tests/before the Docker build stepinsightface,onnxruntime,cv2) are not installed in CI — they're already stubbed by the existingconftest.pyHow it works
ui/app.pycallsload_models()at module level, so the smoke test usesimportlib.util.spec_from_file_locationto load the module fresh and patchesrefacer.models.load_modelswith aMagicMockbefore execution. This keeps the test entirely offline and dependency-light.Reviewer notes
testjob runs in parallel with thebuildjob; both must pass on PRs targetingmaingradioto be importable🤖 Generated with Claude Code