Skip to content

Commit d09c271

Browse files
author
Mickael PHILIT
committed
fix test
1 parent ee0c2a7 commit d09c271

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_pytest_parallel_extra.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
@pytest_parallel.mark.parallel(3)
13-
def test_collective_tmp_dir(comm):
13+
def test_collective_tmpdir_00(comm):
1414
with CollectiveTemporaryDirectory(comm) as tmpdir:
1515
assert tmpdir.exists() and tmpdir.is_dir() # Check dir has been created
1616
assert comm.allgather(tmpdir) == comm.Get_size() * [
@@ -22,7 +22,7 @@ def test_collective_tmp_dir(comm):
2222

2323

2424
@pytest_parallel.mark.parallel(3)
25-
def test_collective_tmp_dir(comm, mpi_tmpdir):
25+
def test_collective_tmpdir_01(comm, mpi_tmpdir):
2626
assert mpi_tmpdir.exists() and mpi_tmpdir.is_dir() # Check dir has been created
2727
assert comm.allgather(mpi_tmpdir) == comm.Get_size() * [
2828
mpi_tmpdir

0 commit comments

Comments
 (0)