Skip to content

Commit 7d6fff6

Browse files
committed
chore: Add sync-port exclusions for now
Signed-off-by: Todd Baert <[email protected]>
1 parent 9730a43 commit 7d6fff6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

providers/flagd/e2e/config_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ func TestConfiguration(t *testing.T) {
2020
testCases := []configTestCase{
2121
{
2222
name: "All",
23-
tags: "",
23+
tags: "~@sync-port",
2424
},
2525
{
2626
name: "RPC",
27-
tags: "@rpc",
27+
tags: "@rpc && ~@sync-port",
2828
},
2929
{
3030
name: "InProcess",
31-
tags: "@in-process",
31+
tags: "@in-process && ~@sync-port",
3232
},
3333
{
3434
name: "File",
35-
tags: "@file",
35+
tags: "@file && ~@sync-port",
3636
},
3737
}
3838

providers/flagd/e2e/rpc_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestRPCProviderE2E(t *testing.T) {
2626
}
2727

2828
// Run tests with RPC-specific tags - exclude unimplemented scenarios
29-
tags := "@rpc && ~@unixsocket && ~@targetURI && ~@sync && ~@metadata && ~@grace && ~@customCert && ~@caching && ~@forbidden"
29+
tags := "@rpc && ~@unixsocket && ~@targetURI && ~@sync && ~@metadata && ~@grace && ~@customCert && ~@caching && ~@forbidden && ~@sync-port"
3030

3131
if err := runner.RunGherkinTestsWithSubtests(t, featurePaths, tags); err != nil {
3232
t.Fatalf("Gherkin tests failed: %v", err)

0 commit comments

Comments
 (0)