From 9d930758b91d1aaa9be47295cebcd3b78d0a6795 Mon Sep 17 00:00:00 2001 From: Seth Carbon Date: Mon, 11 Apr 2022 18:20:47 -0700 Subject: [PATCH] testing conditional for runoak/oaklib; for #89 --- Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bad49d8..431f8c6 100644 --- a/Makefile +++ b/Makefile @@ -15,14 +15,19 @@ all_obo: $(OBO_SRCS) test_obo: target $(patsubst %,target/neo-%.obo,$(TEST_SRCS)) ## For future tests in a glorious future. -#test: touch_trigger test_obo -test-gha: target all_obo neo.obo +#test-gha: touch_trigger test_obo +#test-gha: target all_obo neo.obo +test-gha: echo "test disabled until GH is fast enough to allow data build" ## "Local" tests for full (expensive) data tests. #test: touch_trigger test_obo test: - echo "TODO" +ifeq (, $(shell which runoak)) + echo "test disabled until we have runoak in our environment" +else + runoak --input /tmp/neo.owl info GO:0022008 +endif touch_trigger: touch trigger