Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ commands:
name: Test
command: |
mkdir -p ~/workspace/tests
make -C opt test SHOW=1
make -C opt test SHOW=1 VERBOSE=1
cp test/logs/* ~/workspace/tests
- run:
name: Package
Expand Down
5 changes: 4 additions & 1 deletion opt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ make clean # remove build artifacts
make test # run tests
TEST=test # run only test `test` with Redis output
TEST_ARGS=args # add extra RLTest `args`
VERBOSE=1 # verbose tests output
TEST_COVERAGE=off # add coverage
make pack # create installation packages
PACK_DEPS=0 # do not pack dependencies
Expand Down Expand Up @@ -142,7 +143,9 @@ endif
#----------------------------------------------------------------------------------------------

TEST_REPORT_DIR ?= $(PWD)

ifeq ($(VERBOSE),1)
TEST_ARGS += -v
endif
ifeq ($(TEST),)
TEST=basic_tests.py
PYDEBUG=
Expand Down
Loading