The functions in against-background around :contents are evaluated even when you filter out the tests when autotesting.
(fact-group :integration
(against-background
[(around :contents
(let [] (println "Loading content wrapping functions.") ?form))]))
(midje.repl/autotest :filter (complement :integration))
The println will evaluate.