Skip to content

Instantly share code, notes, and snippets.

@dpapp-hortonworks
Created October 16, 2017 09:20
Show Gist options
  • Save dpapp-hortonworks/86a0bb211029c2f79038c628396e1dbc to your computer and use it in GitHub Desktop.
Save dpapp-hortonworks/86a0bb211029c2f79038c628396e1dbc to your computer and use it in GitHub Desktop.
# contest.py
import pytest
@pytest.fixture
def stuff(request):
args = request.node.funcargs
param = args["param"]
...
# Test file
@pytest.mark.parametrize("param", [12])
def test_stuff(param, stuff, ...):
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment