diff --git a/tests/pytests/functional/formulas/test_docker.py b/tests/pytests/functional/formulas/test_docker.py deleted file mode 100644 index d6b95c9df9d..00000000000 --- a/tests/pytests/functional/formulas/test_docker.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -Tests using docker formula -""" - -import pytest - - -@pytest.fixture(scope="module") -def _formula(saltstack_formula): - with saltstack_formula(name="docker-formula", tag="2.4.2") as formula: - yield formula - - -@pytest.fixture(scope="module") -def modules(loaders, _formula): - return loaders.modules - - -@pytest.mark.skip_on_windows -@pytest.mark.destructive_test -def test_docker_formula(modules): - ret = modules.state.sls("docker") - for staterun in ret: - assert not staterun.result.failed diff --git a/tests/pytests/functional/formulas/test_salt.py b/tests/pytests/functional/formulas/test_salt.py deleted file mode 100644 index 6ba5ab0847f..00000000000 --- a/tests/pytests/functional/formulas/test_salt.py +++ /dev/null @@ -1,30 +0,0 @@ -""" -Tests using salt formula -""" - -import pytest - - -@pytest.fixture(scope="module") -def _formula(saltstack_formula): - with saltstack_formula(name="salt-formula", tag="1.12.0") as formula: - yield formula - - -@pytest.fixture(scope="module") -def modules(loaders, _formula): - return loaders.modules - - -@pytest.mark.skip_on_windows -@pytest.mark.destructive_test -def test_salt_formula(modules): - # Master Formula - ret = modules.state.sls("salt.master") - for staterun in ret: - assert not staterun.result.failed - - # Minion Formula - ret = modules.state.sls("salt.minion") - for staterun in ret: - assert not staterun.result.failed