Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MNT] skip tests involved in windows failures until resolved #1631

Merged
merged 3 commits into from
Aug 30, 2024
Merged
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
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
Loading