79ea010a691b96b7cc3850b87664e1ed3b266db3
max
  Wed Nov 13 05:36:49 2019 -0800
Removing warning message from makefile, refs #24432

diff --git src/utils/chromToUcsc/tests/makefile src/utils/chromToUcsc/tests/makefile
index f32019d..4ac2cea 100644
--- src/utils/chromToUcsc/tests/makefile
+++ src/utils/chromToUcsc/tests/makefile
@@ -1,8 +1,9 @@
 all:
 	mkdir -p out
-	python2 `which chromToUcsc` -i in/hg19.bed -o out/hg19.bed -g hg19 -a hg19.chromAlias.tsv
-	python2 `which chromToUcsc` -i in/mm10.bed -o out/mm10.bed -a mm10.chromAlias.tsv
-	python3 `which chromToUcsc` -i in/hg19.bed -o out/hg19.bed -g hg19 -a hg19.chromAlias.tsv
-	python3 `which chromToUcsc` -i in/mm10.bed -o out/mm10.bed -a mm10.chromAlias.tsv
+	# alas, our automated tests cannot output anything to stderr, as otherwise emails will be sent
+	python2 `which chromToUcsc` -i in/hg19.bed -o out/hg19.bed -g hg19 -a hg19.chromAlias.tsv 2> /dev/null
+	python2 `which chromToUcsc` -i in/mm10.bed -o out/mm10.bed -a mm10.chromAlias.tsv 2> /dev/null
+	python3 `which chromToUcsc` -i in/hg19.bed -o out/hg19.bed -g hg19 -a hg19.chromAlias.tsv 2> /dev/null
+	python3 `which chromToUcsc` -i in/mm10.bed -o out/mm10.bed -a mm10.chromAlias.tsv 2> /dev/null
 	diff out/hg19.bed expected/hg19.bed
 	diff out/mm10.bed expected/mm10.bed