Skip to content

Commit

Permalink
Install [dev] dependecies instead of [test] dependencies for gemma te…
Browse files Browse the repository at this point in the history
…sts (#1159)

Gemma poetry installation file was changed recently (moved all [test]
stuff under [dev]), so need to reflect the changes in `test-gemma` job
  • Loading branch information
DwarKapex authored Nov 19, 2024
1 parent 927fc25 commit 7dcf372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ jobs:
EXECUTE: |
docker run --shm-size=1g --gpus all ${{ needs.build-gemma.outputs.DOCKER_TAG_FINAL }} \
bash -ec \
"cd /opt/gemma && pip install -e .[test] && pytest ." | tee test-gemma.log
"cd /opt/gemma && pip install -e .[dev] && pytest ." | tee test-gemma.log
STATISTICS_SCRIPT: |
summary_line=$(tail -n1 test-gemma.log)
errors=$(echo $summary_line | grep -oE '[0-9]+ error' | awk '{print $1} END { if (!NR) print 0}')
Expand Down

0 comments on commit 7dcf372

Please sign in to comment.