Files
aqtinstall/tests/conftest.py
Dave Dalcino d90f6c0487 Fix pytest warning about custom marker
Pytest complains that one of the custom markers we are using is not
registered. This fixes that
2022-07-30 18:18:29 -07:00

12 lines
274 B
Python

from pytest_socket import disable_socket
def pytest_runtest_setup():
disable_socket()
def pytest_configure(config):
config.addinivalue_line(
"markers", "load_default_settings(use_defaults): mark test not to load from the default settings.ini file"
)