Skip to content

Commit 093a4c4

Browse files
authored
(U2C #1) implement context type (without attribute references) (#102)
1 parent c7a8581 commit 093a4c4

File tree

8 files changed

+1753
-10
lines changed

8 files changed

+1753
-10
lines changed

Makefile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ TEMP_TEST_OUTPUT=/tmp/sse-contract-test-service.log
33

44
# TEST_HARNESS_PARAMS can be set to add -skip parameters for any contract tests that cannot yet pass
55
# Explanation of current skips:
6-
# - "secondary": In the PHP SDK this is not an addressable attribute for clauses; in other
7-
# SDKs, it is. This was underspecified in the past; in future major versions, the other
8-
# SDKs and the contract tests will be in line with the PHP behavior.
6+
# - "evaluation", "events": These test suites will be unavailable until more of the U2C implementation is done.
97
TEST_HARNESS_PARAMS := $(TEST_HARNESS_PARAMS) \
10-
-skip 'evaluation/parameterized/secondary' \
11-
-skip 'events/alias'
8+
-skip 'evaluation' \
9+
-skip 'events'
1210

1311
build-contract-tests:
1412
@cd test-service && composer install --no-progress
@@ -22,7 +20,7 @@ start-contract-test-service-bg:
2220

2321
run-contract-tests:
2422
@curl -s https://raw.githubusercontent.com/launchdarkly/sdk-test-harness/main/downloader/run.sh \
25-
| VERSION=v1 PARAMS="-url http://localhost:8000 -debug -stop-service-at-end $(TEST_HARNESS_PARAMS)" sh
23+
| VERSION=v2 PARAMS="-url http://localhost:8000 -debug -stop-service-at-end $(TEST_HARNESS_PARAMS)" sh
2624

2725
contract-tests: build-contract-tests start-contract-test-service-bg run-contract-tests
2826

0 commit comments

Comments
 (0)