Skip to content

Instantly share code, notes, and snippets.

@public
Created January 14, 2014 14:38
Show Gist options
  • Select an option

  • Save public/8419277 to your computer and use it in GitHub Desktop.

Select an option

Save public/8419277 to your computer and use it in GitHub Desktop.
import pytest
import os
@pytest.fixture(scope="session")
def wut(request):
return repr(os.urandom(16))
def test_a(wut):
print wut
def test_b(wut):
print wut
def test_c(wut):
print wut
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment