Skip to content

Commit

Permalink
[MNT] skip tests involved in windows failures until resolved (#1631)
Browse files Browse the repository at this point in the history
This PR skips tests involved in the failures on windows listed in #1623 until the underlying issues are resolved, see #1632 and #1632
  • Loading branch information
fkiraly authored Aug 30, 2024
1 parent 752d099 commit 6c85b8e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_models/test_temporal_fusion_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,10 @@ def test_init_shared_network(dataloaders_with_covariates):
net.predict(dataset, fast_dev_run=True)


@pytest.mark.skipif(
sys.platform.startswith("win"),
reason="Test skipped on Windows OS due to issues with ddp, see #1623",
)
@pytest.mark.parametrize("strategy", ["ddp"])
def test_distribution(dataloaders_with_covariates, tmp_path, strategy):
train_dataloader = dataloaders_with_covariates["train"]
Expand Down Expand Up @@ -372,6 +376,10 @@ def test_prediction_with_dataframe(model, data_with_covariates):
model.predict(data_with_covariates, fast_dev_run=True)


@pytest.mark.skipif(
sys.platform.startswith("win"),
reason="Test skipped on Windows OS due to issues with ddp, see #1632",
)
@pytest.mark.parametrize("use_learning_rate_finder", [True, False])
def test_hyperparameter_optimization_integration(dataloaders_with_covariates, tmp_path, use_learning_rate_finder):
train_dataloader = dataloaders_with_covariates["train"]
Expand Down

0 comments on commit 6c85b8e

Please sign in to comment.