Skip to content

Commit

Permalink
circleci using multiple python version and coverage/codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
bukosabino committed Nov 12, 2019
1 parent 8a681f0 commit e23a4c5
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,24 @@ jobs:
command: |
coverage run tests.py
coverage report -m
- run:
name: Publish coverage
command: |
sudo pip install codecov
codecov
workflows:
version: 2
build:
jobs:
- test_py36
- test_py37
# - test_py37
- coverage


###########################################
# Testing CircleCI in local
###########################################
# circleci local execute --job test_py36
# circleci local execute --job test_py37
# circleci local execute --job coverage

0 comments on commit e23a4c5

Please sign in to comment.