Skip to content

Commit e752e13

Browse files
committed
Don't test bedrock until #840 is merged
1 parent 53f3c2f commit e752e13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

integration-tests/clj/wp2static_test/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
(sh! "rm" "-f" zip-name :dir plugins-dir))))
4545
(finally
4646
(sh! "rm" "-f" zip-name :dir (str (System/getenv "HOME") "/Downloads/")))))
47-
(bedrock-cli! "plugin" "activate" "wp2static")
47+
;(bedrock-cli! "plugin" "activate" "wp2static")
4848
(wp-cli! "plugin" "activate" "wp2static")))
4949

5050
(defn clean-wp2static-cache! []

integration-tests/clj/wp2static_test/main.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@
112112

113113
(defn system-map []
114114
(component/system-map
115-
:bedrock (component/using (bedrock) [:mariadb :php-fpm])
115+
;:bedrock (component/using (bedrock) [:mariadb :php-fpm])
116116
:mariadb (mariadb)
117117
:nginx (component/using (nginx) [:wordpress])
118118
:php-fpm (component/using (php-fpm) [:mariadb])
119119
:wordpress (component/using (wordpress) [:mariadb :php-fpm])
120-
:wp2static (component/using (wp2static) [:bedrock :wordpress])))
120+
:wp2static (component/using (wp2static) [#_:bedrock :wordpress])))
121121

122122
(defonce system (atom nil))
123123

0 commit comments

Comments
 (0)