Skip to content

Commit

Permalink
Add pid to random bucket name
Browse files Browse the repository at this point in the history
  • Loading branch information
pigmej committed Dec 2, 2015
1 parent 38f79d8 commit c156695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solar/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


def patched_get_bucket_name(cls):
return cls.__name__ + str(time.time())
return cls.__name__ + str(os.getpid()) + str(time.time())


@pytest.fixture
Expand Down

0 comments on commit c156695

Please sign in to comment.