From 421cea545924f83eb27bf710247e5481c9ea8ce7 Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Sun, 16 Jul 2023 22:04:09 -0400 Subject: [PATCH] chore: disable transformers on CI Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- pyproject.toml | 23 ++++++++++++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ff6d0cfc57..4281241b597 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: strategy: fail-fast: false matrix: - framework: [catboost, detectron, diffusers, easyocr, fastai, flax, keras, lightgbm, onnx, picklable_model, pytorch, pytorch_lightning, sklearn, tensorflow, torchscript, transformers, xgboost] + framework: [catboost, detectron, diffusers, easyocr, fastai, flax, keras, lightgbm, onnx, picklable_model, pytorch, pytorch_lightning, sklearn, tensorflow, torchscript, xgboost] timeout-minutes: 90 steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index cff499cf716..43552255932 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -241,7 +241,28 @@ e2e = { composite = [ "tests tests/e2e/bento_server_grpc", ] } pre_all = "pdm sync -d -G io -G grpc -G triton -G tracing -G monitor-otlp -G grpc-reflection -G grpc-channelz -G aws" -all = { composite = ["unit", "integration", "monitoring", "e2e"] } +all = { composite = [ + "unit", + "integration catboost", + "integration detectron", + "integration diffusers", + "integration easyocr", + "integration fastai", + "integration flax", + "integration keras", + "integration lightgbm", + "integration onnx", + "integration picklable_model", + "integration pytorch", + "integration pytorch_lightning", + "integration sklearn", + "integration tensorflow", + "integration torchscript", + "integration xgboost", + "integration transformers", + "monitoring", + "e2e", +] } coverage-combine = "coverage combine {args}" coverage-generate-summary = "python tools/generate_coverage.py" coverage-report-html = "coverage html --skip-covered --skip-empty"