We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f86de6 commit a800fe0Copy full SHA for a800fe0
4 files changed
.travis.yml
@@ -9,8 +9,10 @@ python:
9
- 3.4
10
- 3.3
11
- 2.7
12
- - 2.6
13
before_install:
14
- pip install -r test/requirements.txt
15
script:
16
- - make test
+ - make tests
+after_success:
17
+ codecov
18
+
Makefile
@@ -1,4 +1,4 @@
1
-all: test
+all: tests
2
3
-test:
+tests:
4
bash test.sh
test.sh
@@ -1,2 +1,2 @@
cd test
-nosetests
+nosetests --with-coverage --cover-package pyecharts --cover-package test
test/requirements.txt
@@ -1 +1,3 @@
nose
+codecov
+coverage
0 commit comments