Skip to content

Commit

Permalink
Skip the buggy models for now
Browse files Browse the repository at this point in the history
Signed-off-by: noopur <[email protected]>
  • Loading branch information
noopurintel committed Nov 8, 2024
1 parent a60ad80 commit 7646a3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/task_runner_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
model_name: [ "torch_cnn_mnist", "keras_cnn_mnist", "torch_cnn_histology", "tf_2dunet", "tf_cnn_histology" ]
# There are open issues for some of the models, so excluding them for now:
# 1. https://github.com/securefederatedai/openfl/issues/1126
# 2. https://github.com/securefederatedai/openfl/issues/1127
# model_name: [ "torch_cnn_mnist", "keras_cnn_mnist", "torch_cnn_histology", "tf_2dunet", "tf_cnn_histology" ]
model_name: [ "torch_cnn_mnist", "keras_cnn_mnist" ]
fail-fast: false # do not immediately fail if one of the combinations fail
env:
MODEL_NAME: ${{ inputs.model_name == 'all' && matrix.model_name || inputs.model_name }} # run all models if model_name is not provided else run the provided model
Expand Down
3 changes: 0 additions & 3 deletions tests/openfl_e2e/test_suites/task_runner_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def test_keras_cnn_mnist(fx_federation):
assert fed_helper.verify_federation_run_completion(fx_federation, results), "Federation completion failed"


@pytest.mark.skip(reason="Test is under development")
@pytest.mark.torch_cnn_histology
def test_torch_cnn_histology(fx_federation):
"""
Expand All @@ -56,7 +55,6 @@ def test_torch_cnn_histology(fx_federation):
assert fed_helper.verify_federation_run_completion(fx_federation, results), "Federation completion failed"


@pytest.mark.skip(reason="Test is under development")
@pytest.mark.tf_2dunet
def test_tf_2dunet(fx_federation):
log.info(f"Test for tf_2dunet with fx_federation: {fx_federation}")
Expand All @@ -71,7 +69,6 @@ def test_tf_2dunet(fx_federation):
assert fed_helper.verify_federation_run_completion(fx_federation, results), "Federation completion failed"


@pytest.mark.skip(reason="Test is under development")
@pytest.mark.tf_cnn_histology
def test_tf_cnn_histology(fx_federation):
log.info(f"Test for tf_cnn_histology with fx_federation: {fx_federation}")
Expand Down

0 comments on commit 7646a3c

Please sign in to comment.