ci: fix unit tests
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7f7d6f0..9a14ea0 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -77,7 +77,6 @@
   molecule:
     runs-on: ubuntu-latest
     needs:
-      - pre-commit
       - pytest
     steps:
       - name: Checkout project
diff --git a/atmosphere/tests/unit/tasks/composite/test_openstack_helm.py b/atmosphere/tests/unit/tasks/composite/test_openstack_helm.py
index efb161b..ca1febb 100644
--- a/atmosphere/tests/unit/tasks/composite/test_openstack_helm.py
+++ b/atmosphere/tests/unit/tasks/composite/test_openstack_helm.py
@@ -46,9 +46,9 @@
                                 "version": constants.HELM_RELEASE_INGRESS_NGINX_VERSION,
                             }
                         },
-                        "install": {"disableWait": True},
+                        "install": {"crds": "CreateReplace", "disableWait": True},
                         "interval": "60s",
-                        "upgrade": {"disableWait": True},
+                        "upgrade": {"crds": "CreateReplace", "disableWait": True},
                         "values": constants.HELM_RELEASE_INGRESS_NGINX_VALUES,
                         "valuesFrom": [],
                     },
@@ -94,9 +94,9 @@
                                 "version": constants.HELM_RELEASE_INGRESS_NGINX_VERSION,
                             }
                         },
-                        "install": {"disableWait": True},
+                        "install": {"crds": "CreateReplace", "disableWait": True},
                         "interval": "60s",
-                        "upgrade": {"disableWait": True},
+                        "upgrade": {"crds": "CreateReplace", "disableWait": True},
                         "values": {
                             **constants.HELM_RELEASE_INGRESS_NGINX_VALUES,
                             "foo": "bar",