[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] scratch/el-mock 5df1d3a956 47/64: Merge pull request #12 from A
From: |
Stefan Monnier |
Subject: |
[nongnu] scratch/el-mock 5df1d3a956 47/64: Merge pull request #12 from AdrieanKhisbe/improved-ci |
Date: |
Mon, 28 Aug 2023 23:01:41 -0400 (EDT) |
branch: scratch/el-mock
commit 5df1d3a956544f1d3ad0bcd81daf47fff33ab8cc
Merge: 6443c2aef4 8309faf0be
Author: Philipp <phil07c1@gmail.com>
Commit: GitHub <noreply@github.com>
Merge pull request #12 from AdrieanKhisbe/improved-ci
Improved ci
---
.gitignore | 12 +++++++++++-
Cask | 4 +++-
README.md | 9 ++++++++-
test/test-helper.el | 3 +++
4 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/.gitignore b/.gitignore
index b9ff6f9384..cc05f558a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,11 @@
-.cask
\ No newline at end of file
+# Compiled and temporary files
+*.elc
+*~
+
+# Cask
+/.cask
+dist
+
+# Ecukes
+/features/project/.cask
+/features/project/test/*.el
diff --git a/Cask b/Cask
index e8dece3e4a..7655097c7e 100644
--- a/Cask
+++ b/Cask
@@ -6,4 +6,6 @@
(development
(depends-on "f")
(depends-on "ert-runner")
- (depends-on "ert-expectations"))
+ (depends-on "ert-expectations")
+ (depends-on "cask-package-toolset")
+ (depends-on "undercover"))
diff --git a/README.md b/README.md
index f34fbc622b..8d36e16ef0 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,13 @@
# El mock
-_NOTE: El mock has moved from
+[![Build
Status](https://travis-ci.org/rejeep/el-mock.el.svg)](https://travis-ci.org/rejeep/el-mock.el)
+[![Coverage
Status](https://coveralls.io/repos/rejeep/el-mock.el/badge.svg)](https://coveralls.io/r/rejeep/el-mock.el)
+[![MELPA](http://melpa.org/packages/el-mock-badge.svg)](http://melpa.org/#/el-mock)
+[![MELPA
stable](http://stable.melpa.org/packages/el-mock-badge.svg)](http://stable.melpa.org/#/el-mock)
+[![Tag
Version](https://img.shields.io/github/tag/rejeep/el-mock.el.svg)](https://github.com/rejeep/el-mock.el/tags)
+[![License](http://img.shields.io/:license-gpl3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0.html)
+
+_**NOTE**: El mock has moved from
<http://www.emacswiki.org/emacs/el-mock.el> to
<https://github.com/rejeep/el-mock.el> and its new maintainer is
[@rejeep](https://github.com/rejeep)._
diff --git a/test/test-helper.el b/test/test-helper.el
index a2332e315a..44dd03aee1 100644
--- a/test/test-helper.el
+++ b/test/test-helper.el
@@ -3,4 +3,7 @@
(require 'f)
(require 'ert-expectations)
+(require 'undercover)
+(undercover "*.el" "el-mock/*.el"
+ (:exclude "*-test.el"))
(require 'el-mock (f-expand "el-mock.el" (f-parent (f-parent (f-this-file)))))
- [nongnu] scratch/el-mock 6f3da38bd3 45/64: Add a test for evaluating arguments, (continued)
- [nongnu] scratch/el-mock 6f3da38bd3 45/64: Add a test for evaluating arguments, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 2b4e3acc43 50/64: Merge pull request #29 from telotortium/github-actions, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock c05cc24df6 53/64: Merge pull request #30 from telotortium/fix-backtrace, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 21157530ca 59/64: Misc cosmetic changes, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 5b0afab8e9 60/64: * test/test-helper.el: Mark as not compiled, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 5fb2867d2e 36/64: Merge pull request #15 from gabrielmdeal/master, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 5084045989 37/64: Fix incf function symbol to cl-incf, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 9ddda16de4 39/64: Switch all Elisp files to lexical binding, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock e301749423 41/64: Merge pull request #21 from phst/compile-error, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 06fc9c4cac 43/64: Specify language of code blocks explicitly, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 5df1d3a956 47/64: Merge pull request #12 from AdrieanKhisbe/improved-ci,
Stefan Monnier <=
- [nongnu] scratch/el-mock 3a49f4c138 49/64: Remove Travis configuration, replace Build status in readme, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock a843820161 52/64: Update preserve-backtrace test for Emacs 26+, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 01cf866b4b 51/64: Fix typo, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 6ebfe64410 54/64: Test Emacs 25.3, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 9d7b886955 55/64: CI coverage for Emacs 28.1, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 6cfbc9de8f 57/64: Merge pull request #32 from peterbecich/ci-coverage-emacs-28, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 6f29ddf7c3 58/64: Consolidate stub/mock setup into `mock--stub-setup`, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock accba69638 63/64: * el-mock.el: Clean up the namespace usage, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 18cee97bf6 62/64: Don't expose the `-*-functions` vars in the macroexpanded code, Stefan Monnier, 2023/08/28
- [nongnu] scratch/el-mock 12a0ce79fb 61/64: Replace obsolete `defadvice` with `advice-add`, Stefan Monnier, 2023/08/28