Skip to content

Commit

Permalink
separate test runs so longs don't overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille committed Dec 16, 2024
1 parent 39ca7ea commit 1dee9cc
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion src/python_testing/TC_AccessChecker.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# See https://github.com/project-chip/connectedhomeip/blob/master/docs/testing/python.md#defining-the-ci-test-arguments
# for details about the block below.
#
# These are separated into different runs because the logs for these tests are HUGE. The attribute one individually
# reads every attribute on every cluster 4 times. If there's a failure, having these in separate runs makes it significantly
# easier to navigate the logs
#
# === BEGIN CI TEST ARGUMENTS ===
# test-runner-runs:
# run1:
Expand All @@ -13,9 +17,36 @@
# --commissioning-method on-network
# --discriminator 1234
# --passcode 20202021
# --bool-arg ci_only_linux_skip_ota_cluster_disallowed_for_certification:True
# --trace-to json:${TRACE_TEST_JSON}.json
# --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
# --tests test_TC_ACE_2_1
# run2:
# app: ${ALL_CLUSTERS_APP}
# factory-reset: true
# quiet: true
# app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json
# script-args: >
# --storage-path admin_storage.json
# --commissioning-method on-network
# --discriminator 1234
# --passcode 20202021
# --trace-to json:${TRACE_TEST_JSON}.json
# --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
# --tests test_TC_ACE_2_2
# run3:
# app: ${ALL_CLUSTERS_APP}
# factory-reset: true
# quiet: true
# app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json
# script-args: >
# --storage-path admin_storage.json
# --commissioning-method on-network
# --discriminator 1234
# --passcode 20202021
# --trace-to json:${TRACE_TEST_JSON}.json
# --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
# --bool-arg ci_only_linux_skip_ota_cluster_disallowed_for_certification:True
# --tests test_TC_ACE_2_3
# === END CI TEST ARGUMENTS ===

import logging
Expand Down

0 comments on commit 1dee9cc

Please sign in to comment.