@@ -32,6 +32,10 @@ import (
3232)
3333
3434func TestSchedulerList (t * testing.T ) {
35+ if isSlimMode () {
36+ t .Skip ("skipping scheduler tests in slim mode" )
37+ }
38+
3539 cmdUninstall ()
3640 ensureDaprInstallation (t )
3741 t .Cleanup (func () {
@@ -180,6 +184,10 @@ func TestSchedulerList(t *testing.T) {
180184}
181185
182186func TestSchedulerGet (t * testing.T ) {
187+ if isSlimMode () {
188+ t .Skip ("skipping scheduler tests in slim mode" )
189+ }
190+
183191 cmdUninstall ()
184192 ensureDaprInstallation (t )
185193 t .Cleanup (func () {
@@ -279,6 +287,10 @@ func TestSchedulerGet(t *testing.T) {
279287}
280288
281289func TestSchedulerDelete (t * testing.T ) {
290+ if isSlimMode () {
291+ t .Skip ("skipping scheduler tests in slim mode" )
292+ }
293+
282294 cmdUninstall ()
283295 ensureDaprInstallation (t )
284296 t .Cleanup (func () {
@@ -347,6 +359,10 @@ func TestSchedulerDelete(t *testing.T) {
347359}
348360
349361func TestSchedulerDeleteAllAll (t * testing.T ) {
362+ if isSlimMode () {
363+ t .Skip ("skipping scheduler tests in slim mode" )
364+ }
365+
350366 cmdUninstall ()
351367 ensureDaprInstallation (t )
352368 t .Cleanup (func () {
@@ -381,6 +397,10 @@ func TestSchedulerDeleteAllAll(t *testing.T) {
381397}
382398
383399func TestSchedulerDeleteAll (t * testing.T ) {
400+ if isSlimMode () {
401+ t .Skip ("skipping scheduler tests in slim mode" )
402+ }
403+
384404 cmdUninstall ()
385405 ensureDaprInstallation (t )
386406 t .Cleanup (func () {
@@ -438,6 +458,10 @@ func TestSchedulerDeleteAll(t *testing.T) {
438458}
439459
440460func TestSchedulerExportImport (t * testing.T ) {
461+ if isSlimMode () {
462+ t .Skip ("skipping scheduler tests in slim mode" )
463+ }
464+
441465 cmdUninstall ()
442466 ensureDaprInstallation (t )
443467 t .Cleanup (func () {
0 commit comments