Skip to content

Commit 34490a5

Browse files
committed
chore: Add test_interactive build target
Helps when adding new spec files
1 parent c713140 commit 34490a5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

GNUmakefile.am

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ test_full:
6565
test_probe:
6666
$(SASS_TESTER) --probe-todo $(SASS_TEST_FLAGS)
6767

68+
test_interactive:
69+
$(SASS_TESTER) --interactive $(SASS_TEST_FLAGS)
70+
6871
.PHONY: test test_build test_full test_probe
6972

7073
endif

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,9 @@ test_full: $(SASSC_BIN)
287287
test_probe: $(SASSC_BIN)
288288
$(RUBY_BIN) $(SASS_SPEC_PATH)/sass-spec.rb -c $(SASSC_BIN) --impl libsass --probe-todo $(LOG_FLAGS) $(SASS_SPEC_PATH)/$(SASS_SPEC_SPEC_DIR)
289289

290+
test_interactive: $(SASSC_BIN)
291+
$(RUBY_BIN) $(SASS_SPEC_PATH)/sass-spec.rb -c $(SASSC_BIN) --impl libsass --interactive $(LOG_FLAGS) $(SASS_SPEC_PATH)/$(SASS_SPEC_SPEC_DIR)
292+
290293
clean-objects: | lib
291294
-$(RM) lib/*.a lib/*.so lib/*.dll lib/*.la
292295
-$(RMDIR) lib

0 commit comments

Comments
 (0)