-
Notifications
You must be signed in to change notification settings - Fork 30
feat(flagd): extract evaluator into api, core, and testkit packages #377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
aepfli
wants to merge
20
commits into
main
Choose a base branch
from
feat/extract-flagd-evaluator-api-core-testkit
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
e19ddf9
feat: extract flagd evaluator into api, core, and testkit packages
aepfli f34c06a
fix: update flagd-core to match upstream fractional v2 and Python 3.10
aepfli a2aac75
fix: resolve CI failures - lint, typing, and protobuf v1 revert
aepfli 1c28324
fix: revert schemas and spec submodules to main
aepfli a976480
fix: revert grpc resolvers to upstream main (keep evaluation.v2)
aepfli 9ce6404
chore: remove allFlags.json test artifact
aepfli fe2884b
style: format test_in_process.py
aepfli 37b927d
ci: add tools packages to CI workflow
aepfli 759a79c
test: skip fractional-v1 tests in flagd-core (v2 algorithm)
aepfli cc1f56a
fix: add testkit smoke tests and fix empty test collection
aepfli 8291575
style: fix import sorting in testkit smoke test
aepfli 8cec442
fix: add type annotations to testkit step definitions
aepfli ecd0ba4
style: simplify error_code conditional (SIM or)
aepfli dcbcbc0
fix: address review feedback from Gemini and internal review
aepfli e7074a3
fix: generate testkit features from test-harness submodule at build time
aepfli ca2059a
style: remove unused noqa directive in hatch_build.py
aepfli 1f4329d
fix: sync test-harness files to source tree for dev and CI testing
aepfli 87b71d2
fix: run testkit sync before flagd-core tests
aepfli 0c9447e
fix: add comment for Gherkin escape handling in testkit utils
aepfli 65f4052
fix: restore FlagStore.update() return type to match supertype
aepfli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set_flags_and_get_changed_keysalready acceptsdict, so this serializes to JSON only forFlagdCoreto immediately deserialize it. Could passflags_datadirectly and skip the round-trip.