Skip to content

Commit

Permalink
Fix Makefile BUILD_DIR for tck tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yixinglu committed Mar 7, 2022
1 parent f5af5ac commit 714dbf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ PASSWORD_LOCK_TIME_IN_SECS ?= 0
# commands
gherkin_fmt = ~/.local/bin/reformat-gherkin
run_test = PYTHONPATH=$$PYTHONPATH:$(CURR_DIR)/.. $(CURR_DIR)/nebula-test-run.py
test_without_skip = python3 -m pytest -m "not skip"
test_without_skip_sa = python3 -m pytest -m "not skip and not distonly"
test_without_skip = python3 -m pytest -m "not skip" --build_dir=$(BUILD_DIR)
test_without_skip_sa = python3 -m pytest -m "not skip and not distonly" --build_dir=$(BUILD_DIR)
test_j = $(test_without_skip) -n$(J)
test_j_sa = $(test_without_skip_sa) -n$(J)

Expand Down

0 comments on commit 714dbf6

Please sign in to comment.