Skip to content

Commit

Permalink
Fix example command in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
DhanshreeA committed Dec 18, 2024
1 parent f3fd81d commit baf3642
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-model-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
echo "Sample model id selected: $MODEL_ID"
ersilia -v fetch $MODEL_ID --from_dir .
ersilia -v serve $MODEL_ID
ersilia example inputs -n 5 -f input.csv --predefined
ersilia example -n 5 -f input.csv --predefined
ersilia -v api -i input.csv
ersilia close
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
run: |
source activate
ersilia -v serve $MODEL_ID
ersilia example inputs -n 5 -f input.csv --predefined
ersilia example -n 5 -f input.csv --predefined
ersilia -v run -i "input.csv" -o "output.csv"
ersilia close
cat output.csv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-bentoml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
run: |
ersilia -v fetch ${{ github.event.repository.name }} --from_dockerhub
ersilia -v serve ${{ github.event.repository.name }} --track #Added --track here
ersilia example inputs -n 1 -f input.csv --predefined
ersilia example -n 1 -f input.csv --predefined
ersilia -v run -i "input.csv" -o "output.csv"
ersilia close
output=$(python .github/scripts/verify_model_outcome.py output.csv)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-ersilia-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: |
ersilia -v fetch ${{ github.event.repository.name }} --from_dockerhub
ersilia -v serve ${{ github.event.repository.name }} --track #Added --track here
ersilia example inputs -n 1 -f input.csv --predefined
ersilia example -n 1 -f input.csv --predefined
ersilia -v run -i "input.csv" -o "output.csv"
ersilia close
output=$(python .github/scripts/verify_model_outcome.py output.csv)
Expand Down

0 comments on commit baf3642

Please sign in to comment.