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
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ docker
plumbum
pre-commit
pytest
pytest-retry
# `pytest-xdist` is a plugin that provides the `--numprocesses` flag,
# allowing us to run `pytest` tests in parallel
pytest-xdist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
THIS_DIR = Path(__file__).parent.resolve()


@pytest.mark.flaky(retries=3, delay=1)
@pytest.mark.parametrize(
"test_file,expected_warnings",
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def test_container_not_delete_bind_mount(
host_file.write_text("some-content")

container.run_and_wait(
timeout=5,
timeout=10,
user="root",
working_dir="/home/",
environment=[
Expand Down
1 change: 0 additions & 1 deletion tests/by_image/pyspark-notebook/test_spark_nbconvert.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
THIS_DIR = Path(__file__).parent.resolve()


@pytest.mark.flaky(retries=3, delay=1)
@pytest.mark.parametrize(
"test_file",
["issue_1168", "local_pyspark"],
Expand Down