Compare commits

...

5 Commits

Author SHA1 Message Date
Spencer Florence
c84a011a67 up build number 2016-03-24 07:28:09 -05:00
Spencer Florence
6b985663a5 update build matrix to 6.4 2016-03-24 07:07:15 -05:00
Spencer Florence
e20070da30 fix api on generate-codecov-coverage 2016-03-24 06:55:54 -05:00
Ryan Plessner
04e34cbfa0 Update badges to reflect new repo location 2016-02-13 14:05:12 -05:00
Ryan Plessner
e328dc6270 Rename test file to appease the package server. 2016-02-11 21:54:06 -05:00
5 changed files with 8 additions and 5 deletions

View File

@ -6,6 +6,9 @@ env:
matrix:
- RACKET_VERSION=6.1.1
- RACKET_VERSION=6.2
- RACKET_VERSION=6.2.1
- RACKET_VERSION=6.3
- RACKET_VERSION=6.4
- RACKET_VERSION=HEAD
matrix:

View File

@ -1,7 +1,7 @@
# Cover Codecov
[![Build Status](https://travis-ci.org/rpless/cover-codecov.svg?branch=master)](https://travis-ci.org/rpless/cover-codecov)
[![codecov.io](https://codecov.io/github/rpless/cover-codecov/coverage.svg?branch=master)](https://codecov.io/github/rpless/cover-codecov?branch=master)
[![Build Status](https://travis-ci.org/codecov/codecov-racket.svg?branch=master)](https://travis-ci.org/codecov/codecov-racket)
[![codecov.io](https://codecov.io/github/codecov/codecov-racket/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-racket?branch=master)
Adds [Codecov](https://codecov.io/) support to [Cover](https://github.com/florence/cover).

View File

@ -18,7 +18,7 @@
;; ->
;; Submit cover information to Codecov
(define (generate-codecov-coverage coverage files _dir)
(define (generate-codecov-coverage coverage files [_dir "coverage"])
(define json (codecov-json coverage files))
(define-values (status resp port) (send-codecov! json))
(displayln status)
@ -54,7 +54,7 @@
(reverse line-cover))
(module+ test
(define-runtime-path path "tests/not-run.rkt")
(define-runtime-path path "tests/test-not-run.rkt")
(let ()
(parameterize ([current-cover-environment (make-cover-environment)])
(define file (path->string (simplify-path path)))

View File

@ -3,7 +3,7 @@
(define name "cover-codecov")
(define collection 'multi)
(define version "0.1.0")
(define version "0.1.1")
(define deps '(
("base" #:version "6.1.1")