Skip to content

Commit

Permalink
Exclude Windows from verification check for Task Library
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 468282010
  • Loading branch information
tensorflower-gardener authored and schmidt-sebastian committed Aug 18, 2022
1 parent 527be55 commit 0cfbdd7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ function run_smoke_test() {

test_codegen

test_tfl_task_lib
# On Mac and Ubuntu, verify that the task library builds successfully.
if [[ "$OSTYPE" != "msys" ]]; then
test_tfl_task_lib
fi

# Deactivate from virtualenv.
deactivate || source deactivate || \
Expand Down

0 comments on commit 0cfbdd7

Please sign in to comment.