mirror of
https://github.com/nvbn/thefuck.git
synced 2025-07-07 07:33:36 +01:00
9 lines
171 B
Python
9 lines
171 B
Python
import pytest
|
|
import os
|
|
|
|
enabled = os.environ.get('FUNCTIONAL')
|
|
|
|
functional = pytest.mark.skipif(
|
|
not enabled,
|
|
reason='Functional tests are disabled by default.')
|