We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 478bec1 commit ee554f2Copy full SHA for ee554f2
circle.yml
@@ -3,10 +3,19 @@ machine:
3
- docker
4
python:
5
version: 2.7
6
+ environment:
7
+ COVERALLS_REPO_TOKEN: RDQpf8yX7quK5FXKN2auJpAxFNlIByLiT
8
+
9
10
+dependencies:
11
+ pre:
12
+ - pip install --use-mirrors coverage python-coveralls
13
14
test:
15
override:
16
- mkdir test_dir
- - cd test_dir && ../ctf-cli.py init
- - cd test_dir && ../ctf-cli.py update
- - cd test_dir && ../ctf-cli.py run
17
+ - cd test_dir && COVERAGE_FILE=../.coverage.init coverage run ../ctf-cli.py init
18
+ - cd test_dir && COVERAGE_FILE=../.coverage.update coverage run ../ctf-cli.py update
19
+ - cd test_dir && COVERAGE_FILE=../.coverage.run coverage run ../ctf-cli.py run
20
+ - coverage combine
21
+ - coveralls
0 commit comments