Skip to content

Commit ff8af5e

Browse files
committed
Avoid running all tests in CI
1 parent 5e9d044 commit ff8af5e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,13 @@ else
7979
$(eval export INTEGRATIONS := $(shell $(OPERATIONS_PREFIX)list-updated-integrations))
8080
endif
8181

82+
# For now, we won't allow to run all tests in CI
83+
ifneq ($(CI)$(INTEGRATIONS),true)
8284
$(KARMA) start $(KARMA_FLAGS) $(KARMA_CONF) --single-run;
85+
else
86+
@echo Nothing to test
87+
endif
88+
8389

8490
test-all: install
8591
$(KARMA) start $(KARMA_FLAGS) $(KARMA_CONF) --single-run;

0 commit comments

Comments
 (0)