We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0c2a7 commit d09c271Copy full SHA for d09c271
test/test_pytest_parallel_extra.py
@@ -10,7 +10,7 @@
10
11
12
@pytest_parallel.mark.parallel(3)
13
-def test_collective_tmp_dir(comm):
+def test_collective_tmpdir_00(comm):
14
with CollectiveTemporaryDirectory(comm) as tmpdir:
15
assert tmpdir.exists() and tmpdir.is_dir() # Check dir has been created
16
assert comm.allgather(tmpdir) == comm.Get_size() * [
@@ -22,7 +22,7 @@ def test_collective_tmp_dir(comm):
22
23
24
25
-def test_collective_tmp_dir(comm, mpi_tmpdir):
+def test_collective_tmpdir_01(comm, mpi_tmpdir):
26
assert mpi_tmpdir.exists() and mpi_tmpdir.is_dir() # Check dir has been created
27
assert comm.allgather(mpi_tmpdir) == comm.Get_size() * [
28
mpi_tmpdir
0 commit comments