Skip to content

Commit

Permalink
only include tests between 100 and 200, includes a failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Dec 24, 2024
1 parent e746102 commit b548df0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/NightlyBMDB_CLI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,19 @@ jobs:
continue
fi
number=$(echo "$file_name" | sed -n 's/^BIOMD\([0-9]\+\)\.omex$/\1/p' | sed 's/^0*//')
# TODO: remove later - if number is greater than MAX_TEST_NUMBER or less than MIN_TEST_NUMBER then continue
MIN_TEST_NUMBER=100
MAX_TEST_NUMBER=200
if [ $number -lt $MIN_TEST_NUMBER ]; then
echo "Skipping ${file_name}"
continue
fi
if [ $number -gt $MAX_TEST_NUMBER ]; then
echo "Skipping ${file_name}"
continue
fi
if [ $((number % ${{ strategy.job-total }})) -eq $((MOD_VALUE + 0)) ]; then
echo "Accepting ${file_name}"
cp ${file} $TARGET_DIR/
Expand Down

0 comments on commit b548df0

Please sign in to comment.