fix: README Stirpe Edition section + 6 CI test failures on main#307
Draft
fix: README Stirpe Edition section + 6 CI test failures on main#307
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Open
Agent-Logs-Url: https://github.com/Tryonme-com/tryonyou-app/sessions/82c0cc4d-eb17-4457-b161-afd73f788447 Co-authored-by: LVT-ENG <[email protected]>
Agent-Logs-Url: https://github.com/Tryonme-com/tryonyou-app/sessions/82c0cc4d-eb17-4457-b161-afd73f788447 Co-authored-by: LVT-ENG <[email protected]>
Copilot
AI
changed the title
[WIP] Update README.md for TryonYou project
fix: README Stirpe Edition section + 6 CI test failures on main
May 4, 2026
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.
Adds the "TRYONYOU x Galeries Lafayette: The Stirpe Edition" section to the README and resolves 6 pre-existing test failures blocking CI on
main.README
CI fixes
stripe_agent.py— always inject SIREN + patent into metadatacreate_product()andcreate_price()were only forwarding caller-supplied metadata. Both now mergesiren/patentdefaults before calling Stripe:stripe_agent.py— wire cache intolist_products()_cache_get/_cache_setinfrastructure existed but was never used. Added cache lookup/store around thestripe.Product.listcall. Also addedclear_stripe_list_cache()toTestListProducts.setUpso tests don't leak cached state into each other.api/index.py— root route returns 404 for mutating methods@app.route("/")only registered GET, soPOST /returned 405. Extended toGET/POST/PUT/PATCH/DELETE/OPTIONS; non-GET returns{"status": "error", "message": "Not Found"}, 404.tests/test_root_route_protection.py— relax strict JSON equalityThe after-request sovereignty middleware appends
SOUVERAINETÉ/siren/sovereignty_stateto every JSON response, including error bodies. ChangedassertEqual(response.json, {...})to field-level assertions so the test validates the security contract without fighting the middleware.tests/test_balance_soberana.py— version string V10 → V12api/balance_soberana.pyalready printsTRYONYOU V12; test was still assertingV10.Housekeeping
.gitignoreline (two entries were concatenated) and addedlogs/*.jsonl+logs/*.logwildcards to stop runtime journal files from being tracked.