From 664d1b436651aca81579a06cde8437ae8f15484f Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 29 Aug 2019 21:56:16 +1000 Subject: [PATCH] test: Change "make test-stem" so it only runs the stem tests that use tor This change makes test-stem faster and more reliable. Use "make test-stem-full" to run all of stem's tests. Closes ticket 31554. --- Makefile.am | 2 +- changes/ticket31554 | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 changes/ticket31554 diff --git a/Makefile.am b/Makefile.am index b268180c5b..5d18666edc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -275,7 +275,7 @@ need-stem-path: fi test-stem: need-stem-path $(TESTING_TOR_BINARY) - @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --integ --log notice --target RUN_ALL; + @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --integ --test control.controller --test control.base_controller --test process --log notice; test-stem-full: need-stem-path $(TESTING_TOR_BINARY) @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL,ONLINE -v; diff --git a/changes/ticket31554 b/changes/ticket31554 new file mode 100644 index 0000000000..73f4159ff3 --- /dev/null +++ b/changes/ticket31554 @@ -0,0 +1,4 @@ + o Minor features (stem tests): + - Change "make test-stem" so it only runs the stem tests that use tor. + This change makes test-stem faster and more reliable. + Closes ticket 31554.