Skip to content

Commit de8a134

Browse files
authored
Try to unmark tests as flaky (#2268)
1 parent 100187f commit de8a134

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ docker
22
plumbum
33
pre-commit
44
pytest
5-
pytest-retry
65
# `pytest-xdist` is a plugin that provides the `--numprocesses` flag,
76
# allowing us to run `pytest` tests in parallel
87
pytest-xdist

tests/by_image/all-spark-notebook/test_spark_r_nbconvert.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
THIS_DIR = Path(__file__).parent.resolve()
1313

1414

15-
@pytest.mark.flaky(retries=3, delay=1)
1615
@pytest.mark.parametrize(
1716
"test_file,expected_warnings",
1817
[

tests/by_image/docker-stacks-foundation/test_user_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def test_container_not_delete_bind_mount(
216216
host_file.write_text("some-content")
217217

218218
container.run_and_wait(
219-
timeout=5,
219+
timeout=10,
220220
user="root",
221221
working_dir="/home/",
222222
environment=[

tests/by_image/pyspark-notebook/test_spark_nbconvert.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
THIS_DIR = Path(__file__).parent.resolve()
1313

1414

15-
@pytest.mark.flaky(retries=3, delay=1)
1615
@pytest.mark.parametrize(
1716
"test_file",
1817
["issue_1168", "local_pyspark"],

0 commit comments

Comments
 (0)