Skip to content

Commit

Permalink
chore: disable transformers on CI
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron <[email protected]>
  • Loading branch information
aarnphm committed Jul 17, 2023
1 parent 740417e commit 421cea5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
23 changes: 22 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 421cea5

Please sign in to comment.