File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 28
28
command : |
29
29
make typecheck
30
30
- run :
31
- name : Run Tests
31
+ name : Run Tests with Coverage
32
32
command : |
33
- make test
33
+ make test-with-coverage
Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ coverage:
22
22
@pipenv run python -m pytest --cov=basilisp --cov-report html
23
23
24
24
25
+ .PHONY : test-with-coverage
26
+ test-with-coverage : coverage
27
+ @pipenv run coveralls
28
+
29
+
25
30
.PHONY : test
26
31
test :
27
32
@pipenv install --dev
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ verify_ssl = true
4
4
name = " pypi"
5
5
6
6
[dev-packages ]
7
+ coveralls = " *"
7
8
pyflakes = " *"
8
9
pytest = " *"
9
10
yapf = " *"
Original file line number Diff line number Diff line change 2
2
3
3
A Lisp dialect inspired by Clojure targeting Python.
4
4
5
+ ![ CircleCI] ( https://img.shields.io/circleci/project/github/chrisrink10/basilisp.svg?style=flat-square ) ![ Coveralls github] ( https://img.shields.io/coveralls/github/chrisrink10/basilisp.svg?style=flat-square )
6
+
5
7
## Requirements
6
8
7
9
This project uses [ ` pipenv ` ] ( https://github.com/kennethreitz/pipenv ) to
You can’t perform that action at this time.
0 commit comments