File tree Expand file tree Collapse file tree 3 files changed +60
-5
lines changed
Expand file tree Collapse file tree 3 files changed +60
-5
lines changed Original file line number Diff line number Diff line change 1+ # Documentation: https://github.com/codecov/support/wiki/codecov.yml
2+
3+ codecov :
4+ # CodeCov should only wait for CI's that run coverage tests
5+ # DAutoTester and auto-tester are not in the default list
6+ ci :
7+ - !travis
8+ bot : dlang-bot
9+
10+ coverage :
11+ precision : 3
12+ round : down
13+ range : 80...100
14+
15+ status :
16+ # Learn more at https://codecov.io/docs#yaml_default_commit_status
17+ project : true
18+ patch : true
19+ changes : false
20+
21+ comment : false
Original file line number Diff line number Diff line change 1+ dlang-bot
2+ __test__unittest__
3+
4+ # Created by https://www.gitignore.io/api/d
5+
6+ # ## D ###
7+ # Compiled Object files
8+ * .o
9+ * .obj
10+
11+ # Compiled Dynamic libraries
12+ * .so
13+ * .dylib
14+ * .dll
15+
16+ # Compiled Static libraries
17+ * .a
18+ * .lib
19+
20+ # Executables
21+ * .exe
22+
23+ # DUB
124.dub
225docs.json
326__dummy.html
4- * .o
5- * .obj
6- dlang-bot
7- __test__unittest__
27+ docs /
28+
29+ # Code coverage
30+ * .lst
31+
32+ # End of https://www.gitignore.io/api/d
Original file line number Diff line number Diff line change @@ -5,5 +5,14 @@ language: d
55d :
66 - dmd-beta
77 - dmd
8- - dmd-2.070.2
98 - ldc
9+
10+ matrix :
11+ include :
12+ - d : dmd-2.070.2 # the deployment compiler
13+ env : COVERAGE=true
14+ script :
15+ # https://issues.dlang.org/show_bug.cgi?id=13742
16+ - dub test --compiler=$DC --build=unittest-cov --build-mode=singleFile
17+ after_success :
18+ - bash <(curl -s https://codecov.io/bash)
You can’t perform that action at this time.
0 commit comments