6 lines
143 B
Python
6 lines
143 B
Python
import pytest
|
|
|
|
|
|
def pytest_configure(config):
|
|
config.addinivalue_line("markers",
|
|
"slow: Tests that are slow.")
|