Skip to content

Commit

Permalink
fix(aiplatform): reset timeout and skip deploy model test
Browse files Browse the repository at this point in the history
  • Loading branch information
gericdong committed Jun 29, 2023
1 parent 41eceb3 commit 998f0a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ai-platform-snippets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
test:
if: github.event.action != 'labeled' || github.event.label.name == 'actions:force-run'
runs-on: ubuntu-latest
timeout-minutes: 360
timeout-minutes: 120
permissions:
contents: 'write'
pull-requests: 'write'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ const location = process.env.LOCATION;
let deployedModelId;
let endpointId;

describe('AI platform deploy model custom model', () => {
// TODO (#3302): temporarily skip this test to help test run stability diagnosis
describe.skip('AI platform deploy model custom model', () => {
it('should deploy the custom model in the specified endpoint', async () => {
const endOut = execSync(
`node ./create-endpoint.js ${endpointDisplayName} ${project} \
Expand Down

0 comments on commit 998f0a7

Please sign in to comment.