mirror of
https://github.com/nvbn/thefuck.git
synced 2025-02-22 12:58:33 +00: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.')
|