Skip to content

Commit

Permalink
reconfigure test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbedichekTT committed Feb 25, 2025
1 parent 3ba6ef6 commit d92db1f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/batch-experiment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ["in-service"]
strategy:
matrix:
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27]
env:
pytest_verbosity: 0
pytest_report_title: "⭐️ Model Tests"
Expand All @@ -32,22 +32,22 @@ jobs:
file_prefix="tests/"
# Assign tests dynamically based on matrix group
TOTAL_GROUPS=40
TOTAL_GROUPS=27
CURRENT_GROUP=${{ matrix.group }}
mapfile -t test_ids_verbose < <(pytest --collect-only -q -m converted_end_to_end --ignore=tests/models/autoencoder_conv tests/models/ | awk -F '::' '{print $1}' | sort -u)
test_ids=()
# Array of tests to exclude
exclude_tests=(
"models/mnist/test_mnist.py"
"models/MobileNetV2/test_MobileNetV2.py"
"models/openpose/test_openpose_v2.py"
"models/resnet/test_resnet.py"
"models/resnet50/test_resnet50.py"
"models/roberta/test_roberta.py"
# "models/mnist/test_mnist.py"
# "models/MobileNetV2/test_MobileNetV2.py"
# "models/openpose/test_openpose_v2.py"
# "models/resnet/test_resnet.py"
# "models/resnet50/test_resnet50.py"
# "models/roberta/test_roberta.py"
"models/unet/test_unet.py"
"models/hand_landmark/test_hand_landmark.py"
# "models/hand_landmark/test_hand_landmark.py"
)
# Preprocess file paths
Expand Down

0 comments on commit d92db1f

Please sign in to comment.