From 3d23269d0ac0e87dfe6af5ad9009962c9e496b40 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Wed, 17 Aug 2022 11:58:35 +0200 Subject: [PATCH] The secrets tests are moved to "always" section of tests The secrets tests are interacting with providers so changes in providers secrets implementation might break those tests. Moving them to "always" folder prevents them from accepting a PR that breaks other PRs. Related: #25751 #25628 --- tests/{secrets => always}/test_secrets.py | 0 tests/{secrets => always}/test_secrets_backends.py | 0 .../test_secrets_local_filesystem.py} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename tests/{secrets => always}/test_secrets.py (100%) rename tests/{secrets => always}/test_secrets_backends.py (100%) rename tests/{secrets/test_local_filesystem.py => always/test_secrets_local_filesystem.py} (100%) diff --git a/tests/secrets/test_secrets.py b/tests/always/test_secrets.py similarity index 100% rename from tests/secrets/test_secrets.py rename to tests/always/test_secrets.py diff --git a/tests/secrets/test_secrets_backends.py b/tests/always/test_secrets_backends.py similarity index 100% rename from tests/secrets/test_secrets_backends.py rename to tests/always/test_secrets_backends.py diff --git a/tests/secrets/test_local_filesystem.py b/tests/always/test_secrets_local_filesystem.py similarity index 100% rename from tests/secrets/test_local_filesystem.py rename to tests/always/test_secrets_local_filesystem.py