Skip to content

Commit db73823

Browse files
committed
fixing tests
1 parent 2ae6818 commit db73823

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/conftest.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def data_dir(tmpdir_factory):
3131
each test and deleted at the end, this way all the
3232
tests work in isolation.
3333
"""
34-
return str(tmpdir_factory.mktemp("ArduinoTest"))
34+
return str(tmpdir_factory.mktemp("A"))
3535

3636

3737
@pytest.fixture(scope="session")
@@ -40,7 +40,7 @@ def downloads_dir(tmpdir_factory):
4040
To save time and bandwidth, all the tests will access
4141
the same download cache folder.
4242
"""
43-
return str(tmpdir_factory.mktemp("ArduinoTest"))
43+
return str(tmpdir_factory.mktemp("A"))
4444

4545

4646
@pytest.fixture(scope="function")
@@ -50,7 +50,7 @@ def working_dir(tmpdir_factory):
5050
will be created before running each test and deleted
5151
at the end, this way all the tests work in isolation.
5252
"""
53-
return str(tmpdir_factory.mktemp("ArduinoTestWork"))
53+
return str(tmpdir_factory.mktemp("W"))
5454

5555

5656
@pytest.fixture(scope="function")

0 commit comments

Comments
 (0)