I run my tests with coverage. I am using python-coverage.
I am trying to use coveralls so that I can have my coverage info in
coveralls.io. However, I cannot seem to get it working.
In my .circleci/config.yml, I have:
- &run_my_tests
name: run_my_tests
command: |
source activate py2
python run_tests.py -c -v2 -H
coveralls
my ‘run_tests.py’ runs:
nosetests --with-cover --cover-html --cover-package <pkg dir>
and after ‘python run_tests.py’ step above, I have
‘cover’ directory and .coverage which are the coverage info.
I have COVERALLS_REPO_TOKEN set for my project in circleCI.
when ‘coveralls’ is run, I am seeing this in my CircleCI log:
INFO:coveralls:200
INFO:coveralls:{"message":"Job ##1.6","url":"https://coveralls.io/jobs/38995549"}
but I am not seeing any coverage info being submitted when I go to
coveralls.io for my project.
If anyone has got ‘coveralls’ to work with CircleCI 2.0, I would appreciate any advice.
Thanks!