Co-authored-by: Bruno Oliveira <nicoddemus@gmail.com> Co-authored-by: Thomas Grainger <tagrain@gmail.com> Co-authored-by: Kyle Altendorf <sda@fstab.net>
11 lines
123 B
Python
11 lines
123 B
Python
import pytest
|
|
|
|
|
|
def test_foo():
|
|
assert True
|
|
|
|
|
|
@pytest.mark.parametrize("i", range(3))
|
|
def test_bar(i):
|
|
assert True
|