Mark deprecated tests

This commit is contained in:
Tim Byrne 2019-09-27 08:39:50 -05:00
parent d2afab6846
commit eeba216cfe
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12
3 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,5 @@
[pytest]
cache_dir = /tmp
addopts = -ra
markers =
deprecated: marks tests for deprecated features (deselect with '-m "not deprecated"')

View File

@ -6,6 +6,9 @@ import py
import pytest
import utils
# These tests are for the alternate processing in YADM_COMPATIBILITY=1 mode
pytestmark = pytest.mark.deprecated
# These test IDs are broken. During the writing of these tests, problems have
# been discovered in the way yadm orders matching files.
BROKEN_TEST_IDS = [

View File

@ -4,6 +4,9 @@ import os
import pytest
import utils
# These tests are for the template processing in YADM_COMPATIBILITY=1 mode
pytestmark = pytest.mark.deprecated
@pytest.fixture(scope='module')
def envtpl_present(runner):