Commit b8bfe52 1 parent 9ba6c19 commit b8bfe52 Copy full SHA for b8bfe52
File tree 2 files changed +25
-2
lines changed
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 34
34
<< : *test-template
35
35
docker :
36
36
- image : circleci/python:3.9
37
-
37
+ coverage :
38
+ docker :
39
+ - image : circleci/python:3.7
40
+ working_directory : ~/finvizfinance
41
+ steps :
42
+ - checkout
43
+ - run :
44
+ name : Install dependencies
45
+ command : |
46
+ pip install --upgrade pip
47
+ python3 -m venv venv
48
+ . venv/bin/activate
49
+ sudo pip install -r requirements-coverage.txt
50
+ - run :
51
+ name : Run coverage
52
+ command : |
53
+ coverage run -m unittest discover
54
+ coverage report -m
55
+ - run :
56
+ name : Publish coverage
57
+ command : |
58
+ export COVERALLS_REPO_TOKEN=ClAernwluOegoexWqdcN70Skf2RHgrGId
59
+ coveralls
38
60
workflows :
39
61
version : 2
40
62
build :
@@ -43,7 +65,7 @@ workflows:
43
65
- test_py37
44
66
- test_py38
45
67
- test_py39
46
- # - coverage
68
+ - coverage
47
69
# - doc
48
70
49
71
Original file line number Diff line number Diff line change
1
+ repo_token : ClAernwluOegoexWqdcN70Skf2RHgrGId
You can’t perform that action at this time.
0 commit comments