diff options
author | Nick Vatamaniuc <vatamane@gmail.com> | 2021-04-14 03:05:29 -0400 |
---|---|---|
committer | Nick Vatamaniuc <vatamane@gmail.com> | 2021-04-15 12:32:01 -0400 |
commit | 794beb8b775cd304b6dd69dd2939b0bd8c1e9fd9 (patch) | |
tree | e45037b84bd9e0ca92a83dbe88a12f7b460192d1 | |
parent | e16f167dbe5a980035e8faa9a2d0a54a00915551 (diff) | |
download | couchdb-remove-a-few-3.x-applications.tar.gz |
Clean up Makefiles and start running all the unit testsremove-a-few-3.x-applications
* Remove non-existent applications
* Most importantly, start running all the unit test. This should include 500+ new couch tests.
* Noticed `local` application was flaky and periodically timing out in CI.
Since it's a transitive dependency of jaeger, let's skip running it for now.
It's a bit in the same category as brcypt, meck and hyper.
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | Makefile.win | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -72,7 +72,7 @@ DESTDIR= # Rebar options apps= -skip_deps=folsom,meck,mochiweb,triq,proper,snappy,bcrypt,hyper +skip_deps=folsom,meck,mochiweb,proper,bcrypt,hyper,local suites= tests= @@ -160,9 +160,9 @@ endif .PHONY: check check: all @$(MAKE) emilio - @$(MAKE) eunit apps=couch_eval,couch_expiring_cache,ctrace,couch_jobs,couch_views,fabric,mango,chttpd,couch_replicator + @$(MAKE) eunit @$(MAKE) elixir-suite - @$(MAKE) exunit apps=chttpd + @$(MAKE) exunit @$(MAKE) mango-test .PHONY: eunit diff --git a/Makefile.win b/Makefile.win index aeb7fe7b6..5240da377 100644 --- a/Makefile.win +++ b/Makefile.win @@ -76,7 +76,7 @@ DESTDIR= # Rebar options apps= -skip_deps=folsom,meck,mochiweb,triq,proper,snappy,bcrypt,hyper +skip_deps=folsom,meck,mochiweb,proper,bcrypt,hyper suites= tests= |