Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/test-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ on:
branches:
- development
- master
workflow_dispatch: {}
workflow_dispatch:
inputs:
skip_tests:
description: 'Skip run_monorepo_tests and go straight to build-marketplace'
required: false
type: boolean
default: false

jobs:
build_strategy_matrix:
Expand Down Expand Up @@ -78,6 +84,7 @@ jobs:

run_monorepo_tests:
needs: build_strategy_matrix
if: ${{ github.event_name != 'workflow_dispatch' || inputs.skip_tests != true }}
runs-on: ubuntu-latest
strategy:
# matrix: [{"package": some package that changed}, {...}, ...]
Expand Down Expand Up @@ -153,7 +160,10 @@ jobs:

build-marketplace:
name: Build marketplace
if: (github.repository == 'mlrun/functions' || github.repository == 'mlrun/hub-assets')
if: |
always() &&
(github.repository == 'mlrun/functions' || github.repository == 'mlrun/hub-assets') &&
(needs.run_monorepo_tests.result == 'success' || needs.run_monorepo_tests.result == 'skipped')
runs-on: ubuntu-latest
needs: run_monorepo_tests
continue-on-error: false
Expand Down
4 changes: 4 additions & 0 deletions functions/src/silero_vad/test_silero_vad.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
import mlrun
import pytest

pytestmark = pytest.mark.skip(
reason="Skipped until FHUB-248 is addressed"
)


@pytest.fixture()
def setup_test():
Expand Down
Loading