Skip to content

Commit

Permalink
Skip reliability tests to debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Jul 27, 2023
1 parent f29b838 commit f0ff23b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def run(parameter: PeerCommunicatorTestProcessParameter, queue: BidirectionalQue
queue.put([])
logger.exception("Exception during test")


@pytest.mark.skip # skip temporarily, to debug the CI
@pytest.mark.parametrize("number_of_instances, repetitions", [(2, 1000), (10, 100)])
def test_reliability(number_of_instances: int, repetitions: int):
run_test_with_repetitions(number_of_instances, repetitions)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def run(parameter: PeerCommunicatorTestProcessParameter, queue: BidirectionalQue
traceback.print_exc()
logger.exception("Exception during test", exception=e)


@pytest.mark.skip # skip temporarily, to debug the CI
@pytest.mark.parametrize("number_of_instances, repetitions", [(2, 1000), (10, 100)])
def test_reliability(number_of_instances: int, repetitions: int):
run_test_with_repetitions(number_of_instances, repetitions)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def run(parameter: PeerCommunicatorTestProcessParameter, queue: BidirectionalQue
received_values.add(value[0].to_bytes().decode("utf8"))
queue.put(received_values)


@pytest.mark.skip # skip temporarily, to debug the CI
@pytest.mark.parametrize("number_of_instances, repetitions", [(2, 1000), (10, 100)])
def test_reliability(number_of_instances: int, repetitions: int):
run_test_with_repetitions(number_of_instances, repetitions)
Expand Down
2 changes: 1 addition & 1 deletion tests/udf_communication/test_communicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run(parameter: CommunicatorTestProcessParameter,
)
queue.put("Finished")


@pytest.mark.skip # skip temporarily, to debug the CI
@pytest.mark.parametrize("number_of_nodes, number_of_instances_per_node, repetitions",
[
(2, 2, 100),
Expand Down
2 changes: 1 addition & 1 deletion tests/udf_communication/test_localhost_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def run(parameter: PeerCommunicatorTestProcessParameter, queue: BidirectionalQue
else:
queue.put([])


@pytest.mark.skip # skip temporarily, to debug the CI
@pytest.mark.parametrize("number_of_instances, repetitions", [(2, 1000), (10, 100)])
def test_reliability(number_of_instances: int, repetitions: int):
run_test_with_repetitions(number_of_instances, repetitions)
Expand Down
2 changes: 1 addition & 1 deletion tests/udf_communication/test_multi_node_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def run(parameter: PeerCommunicatorTestProcessParameter, queue: BidirectionalQue
else:
queue.put([])


@pytest.mark.skip # skip temporarily, to debug the CI
@pytest.mark.parametrize("number_of_instances, repetitions", [(2, 1000), (10, 100)])
def test_reliability(number_of_instances: int, repetitions: int):
run_test_with_repetitions(number_of_instances, repetitions)
Expand Down

0 comments on commit f0ff23b

Please sign in to comment.