Skip to content

Commit 13b0743

Browse files
authored
modify canary to use shallow from env (#246)
Issue #, if available: n/a Description of changes: - Modifying the run_test script to add the shallow marker based off an environment variable rather than having it in the script Testing - Tested inside one of the canaries By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent aa7d7af commit 13b0743

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/canary/scripts/run_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ pushd $E2E_DIR
9797
if [[ $SERVICE_REGION =~ ^(eu-north-1|eu-west-3)$ ]]; then
9898
# If select_regions_1 true we run the notebook_instance test
9999
pytest_args+=(-m "canary or select_regions_1")
100-
elif [[ $SERVICE_REGION =~ ^(eu-south-2|ap-southeast-3|me-central-1|eu-central-2)$ ]]; then
100+
elif [[ $SHALLOW_REGION = "shallow" ]]; then
101101
pytest_args+=(-m "shallow_canary")
102102
else
103103
pytest_args+=(-m "canary")

test/e2e/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
acktest @ git+https://github.com/aws-controllers-k8s/test-infra.git@0bf619e4653b31346a8f39de7b6ad8a1d1317ef2
1+
acktest @ git+https://github.com/aws-controllers-k8s/test-infra.git@c7d61848a9011c05410da20392de637cc8d8a7da
22
black==20.8b1
33
flaky==3.7.0

0 commit comments

Comments
 (0)