Skip to content

Commit 87b71d2

Browse files
aepfliclaude
andcommitted
fix: run testkit sync before flagd-core tests
flagd-core e2e tests depend on testkit feature files which are generated from the test-harness submodule, not checked in. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Simon Schrottner <simon.schrottner@gmail.com>
1 parent 1f4329d commit 87b71d2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tools/openfeature-flagd-core/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ addopts = "-m 'not fractional-v1'"
7272
omit = ["tests/**"]
7373

7474
[tool.poe.tasks]
75-
test = "pytest tests"
76-
test-cov = "coverage run -m pytest tests"
75+
sync-test-harness = "python ../openfeature-flagd-api-testkit/hatch_build_sync.py"
76+
test = ["sync-test-harness", {cmd = "pytest tests"}]
77+
test-cov = ["sync-test-harness", {cmd = "coverage run -m pytest tests"}]
7778
cov-report = "coverage xml"
7879
cov = [
7980
"test-cov",

0 commit comments

Comments
 (0)