-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Migrate tests to use buttercup
- Loading branch information
1 parent
4e5bf7d
commit 4e653f2
Showing
10 changed files
with
661 additions
and
551 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
codecov: | ||
notify: | ||
# will no delay sending notifications until all ci is finished | ||
require_ci_to_pass: no | ||
|
||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "65...90" | ||
|
||
status: | ||
project: | ||
default: | ||
# the amount that coverage can drop while still posting a success | ||
threshold: 1% | ||
patch: no | ||
changes: no | ||
|
||
comment: | ||
layout: diff | ||
behavior: default | ||
require_changes: false | ||
|
||
ignore: | ||
- ".git" | ||
- "*.yml" | ||
- "*.json" | ||
- "*.md" | ||
- "*.mk" | ||
- "*.txt" | ||
|
||
# ignore folders and all its contents | ||
- ".cask/.*" | ||
- ".github/.*" | ||
- "test/.*" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Run “make build” by default | ||
.DEFAULT_GOAL = build | ||
|
||
EMACS ?= emacs | ||
CASK ?= cask | ||
|
||
EMACSFLAGS ?= | ||
TESTFLAGS ?= -L . | ||
|
||
EMACSBATCH = $(EMACS) -Q --batch -L . $(EMACSFLAGS) | ||
RUNEMACS = | ||
|
||
# Program availability | ||
HAVE_CASK := $(shell sh -c "command -v $(CASK)") | ||
ifndef HAVE_CASK | ||
$(warning "$(CASK) is not available. Please run make help") | ||
RUNEMACS = $(EMACSBATCH) | ||
else | ||
RUNEMACS = $(CASK) exec $(EMACSBATCH) | ||
endif | ||
|
||
VERSION="$(shell sed -nre '/^;; Version:/ { s/^;; Version:[ \t]+//; p }' esup.el)" | ||
|
||
# File lists | ||
SRCS = esup-child.el esup.el | ||
OBJS = $(SRCS:.el=.elc) |
Oops, something went wrong.