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
3 changes: 3 additions & 0 deletions tests/rcpsp/solvers/test_cp_mzn.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
)
from discrete_optimization.rcpsp.utils import kendall_tau_similarity, plot_task_gantt

if sys.platform.startswith("win"):
pytest.skip(reason="Much too long on windows", allow_module_level=True)


@pytest.fixture
def random_seed():
Expand Down
5 changes: 5 additions & 0 deletions tests/rcpsp/solvers/test_lns.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Copyright (c) 2024-2025 AIRBUS and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import sys

import pytest

from discrete_optimization.generic_rcpsp_tools.solvers.lns_cp_mzn import (
Expand All @@ -16,6 +18,9 @@
from discrete_optimization.rcpsp.problem import RcpspProblem
from discrete_optimization.rcpsp.solvers.cp_mzn import CpRcpspSolver

if sys.platform.startswith("win"):
pytest.skip(reason="Much too long on windows", allow_module_level=True)


@pytest.mark.parametrize(
"file_name",
Expand Down
4 changes: 4 additions & 0 deletions tests/rcpsp/solvers/test_resource_optim.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright (c) 2022-2025 AIRBUS and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import sys

import pytest

Expand All @@ -11,6 +12,9 @@
CpRcpspSolver,
)

if sys.platform.startswith("win"):
pytest.skip(reason="Much too long on windows", allow_module_level=True)


@pytest.mark.parametrize(
"optimisation_level",
Expand Down
Loading