Skip to content

Commit 7668a06

Browse files
authored
Merge pull request #9 from craigthomas/codecov-change
Update code coverage report to Codecov
2 parents 435e9c1 + ae05a51 commit 7668a06

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

.coveragerc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ before_install:
3232
virtalenv:
3333
system_site_packages: true
3434
script:
35-
- nosetests --with-coverage --cover-package=chip8
35+
- nosetests -v --with-coverage --cover-package=chip8
3636
after_success:
37-
- coveralls
37+
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Yet Another (Super) Chip 8 Emulator
22

33
[![Build Status](https://travis-ci.org/craigthomas/Chip8Python.svg?branch=master)](https://travis-ci.org/craigthomas/Chip8Python)
4-
[![Coverage Status](https://coveralls.io/repos/github/craigthomas/Chip8Python/badge.svg?branch=master)](https://coveralls.io/github/craigthomas/Chip8Python?branch=master)
4+
[![codecov](https://codecov.io/gh/craigthomas/Chip8Python/branch/master/graph/badge.svg)](https://codecov.io/gh/craigthomas/Chip8Python)
55
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/f100b6deb9bf4729a2c55ef12fb695c9)](https://www.codacy.com/app/craig-thomas/Chip8Python?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=craigthomas/Chip8Python&amp;utm_campaign=Badge_Grade)
66
[![Dependency Status](https://dependencyci.com/github/craigthomas/Chip8Python/badge)](https://dependencyci.com/github/craigthomas/Chip8Python)
77

codecov.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
coverage:
2+
precision: 2
3+
round: down
4+
range: "70...100"
5+
6+
status:
7+
project:
8+
default: on
9+
patch:
10+
default: on
11+
changes:
12+
default: off
13+
14+
comment:
15+
layout: "header, reach, diff, flags, files, footer"
16+
behavior: default
17+
require_changes: no
18+
require_base: no
19+
require_head: yes

0 commit comments

Comments
 (0)