@@ -31,39 +31,40 @@ The coverage information generated will look something like this:
31
31
/nix/store/...-my-project-0.1.0.0-coverage-report/
32
32
└── share
33
33
└── hpc
34
- ├── mix
35
- │ ├── my-library-0.1.0.0
36
- │ │ └── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
37
- │ │ ├── My.Lib.Config.mix
38
- │ │ ├── My.Lib.Types.mix
39
- │ │ └── My.Lib.Util.mix
40
- │ └── my-test-1
41
- │ ├── Spec.mix
42
- │ └── Main.mix
43
- ├── tix
44
- │ ├── my-library-0.1.0.0
45
- │ │ └── my-library-0.1.0.0.tix
46
- │ └── my-test-1
47
- │ └── my-test-1.tix
48
- └── html
49
- ├── my-library-0.1.0.0
50
- │ ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
51
- │ │ ├── My.Lib.Config.hs.html
52
- │ │ ├── My.Lib.Types.hs.html
53
- │ │ └── My.Lib.Util.hs.html
54
- │ ├── hpc_index_alt.html
55
- │ ├── hpc_index_exp.html
56
- │ ├── hpc_index_fun.html
57
- │ └── hpc_index.html
58
- └── my-test-1
59
- ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
60
- │ ├── My.Lib.Config.hs.html
61
- │ ├── My.Lib.Types.hs.html
62
- │ └── My.Lib.Util.hs.html
63
- ├── hpc_index_alt.html
64
- ├── hpc_index_exp.html
65
- ├── hpc_index_fun.html
66
- └── hpc_index.html
34
+ └── vanilla
35
+ ├── mix
36
+ │ ├── my-library-0.1.0.0
37
+ │ │ └── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
38
+ │ │ ├── My.Lib.Config.mix
39
+ │ │ ├── My.Lib.Types.mix
40
+ │ │ └── My.Lib.Util.mix
41
+ │ └── my-test-1
42
+ │ ├── Spec.mix
43
+ │ └── Main.mix
44
+ ├── tix
45
+ │ ├── my-library-0.1.0.0
46
+ │ │ └── my-library-0.1.0.0.tix
47
+ │ └── my-test-1
48
+ │ └── my-test-1.tix
49
+ └── html
50
+ ├── my-library-0.1.0.0
51
+ │ ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
52
+ │ │ ├── My.Lib.Config.hs.html
53
+ │ │ ├── My.Lib.Types.hs.html
54
+ │ │ └── My.Lib.Util.hs.html
55
+ │ ├── hpc_index_alt.html
56
+ │ ├── hpc_index_exp.html
57
+ │ ├── hpc_index_fun.html
58
+ │ └── hpc_index.html
59
+ └── my-test-1
60
+ ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
61
+ │ ├── My.Lib.Config.hs.html
62
+ │ ├── My.Lib.Types.hs.html
63
+ │ └── My.Lib.Util.hs.html
64
+ ├── hpc_index_alt.html
65
+ ├── hpc_index_exp.html
66
+ ├── hpc_index_fun.html
67
+ └── hpc_index.html
67
68
```
68
69
69
70
- The mix files are copied verbatim from the builds with coverage.
@@ -93,69 +94,70 @@ like this:
93
94
/nix/store/...-coverage-report
94
95
└── share
95
96
└── hpc
96
- ├── mix
97
- │ ├── my-library-0.1.0.0
98
- │ │ └── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
99
- │ │ ├── My.Lib.Config.mix
100
- │ │ ├── My.Lib.Types.mix
101
- │ │ └── My.Lib.Util.mix
102
- │ ├── my-test-1
103
- │ │ ├── Spec.mix
104
- │ │ └── Main.mix
105
- │ ├── other-library-0.1.0.0
106
- │ │ └── other-library-0.1.0.0-48EVZBwW9Kj29VTaRMhBDf
107
- │ │ ├── Other.Lib.A.mix
108
- │ │ └── Other.Lib.B.mix
109
- │ └── other-test-1
110
- │ ├── Spec.mix
111
- │ └── Main.mix
112
- ├── tix
113
- │ ├── all
114
- │ │ └── all.tix
115
- │ ├── my-library-0.1.0.0
116
- │ │ └── my-library-0.1.0.0.tix
117
- │ ├── my-test-1
118
- │ │ └── my-test-1.tix
119
- │ ├── other-library-0.1.0.0
120
- │ │ └── other-library-0.1.0.0.tix
121
- │ └── other-test-1
122
- │ └── other-test-1.tix
123
- └── html
124
- ├── my-library-0.1.0.0
125
- │ ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
126
- │ │ ├── My.Lib.Config.hs.html
127
- │ │ ├── My.Lib.Types.hs.html
128
- │ │ └── My.Lib.Util.hs.html
129
- │ ├── hpc_index_alt.html
130
- │ ├── hpc_index_exp.html
131
- │ ├── hpc_index_fun.html
132
- │ └── hpc_index.html
133
- ├── my-test-1
134
- │ ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
135
- │ │ ├── My.Lib.Config.hs.html
136
- │ │ ├── My.Lib.Types.hs.html
137
- │ │ └── My.Lib.Util.hs.html
138
- │ ├── hpc_index_alt.html
139
- │ ├── hpc_index_exp.html
140
- │ ├── hpc_index_fun.html
141
- │ └── hpc_index.html
142
- ├── other-libray-0.1.0.0
143
- │ ├── other-library-0.1.0.0-48EVZBwW9Kj29VTaRMhBDf
144
- │ │ ├── Other.Lib.A.hs.html
145
- │ │ └── Other.Lib.B.hs.html
146
- │ ├── hpc_index_alt.html
147
- │ ├── hpc_index_exp.html
148
- │ ├── hpc_index_fun.html
149
- │ └── hpc_index.html
150
- ├── other-test-1
151
- │ ├── other-library-0.1.0.0-48EVZBwW9Kj29VTaRMhBDf
152
- │ │ ├── Other.Lib.A.hs.html
153
- │ │ └── Other.Lib.B.hs.html
154
- │ ├── hpc_index_alt.html
155
- │ ├── hpc_index_exp.html
156
- │ ├── hpc_index_fun.html
157
- │ └── hpc_index.html
158
- └── index.html
97
+ └── vanilla
98
+ ├── mix
99
+ │ ├── my-library-0.1.0.0
100
+ │ │ └── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
101
+ │ │ ├── My.Lib.Config.mix
102
+ │ │ ├── My.Lib.Types.mix
103
+ │ │ └── My.Lib.Util.mix
104
+ │ ├── my-test-1
105
+ │ │ ├── Spec.mix
106
+ │ │ └── Main.mix
107
+ │ ├── other-library-0.1.0.0
108
+ │ │ └── other-library-0.1.0.0-48EVZBwW9Kj29VTaRMhBDf
109
+ │ │ ├── Other.Lib.A.mix
110
+ │ │ └── Other.Lib.B.mix
111
+ │ └── other-test-1
112
+ │ ├── Spec.mix
113
+ │ └── Main.mix
114
+ ├── tix
115
+ │ ├── all
116
+ │ │ └── all.tix
117
+ │ ├── my-library-0.1.0.0
118
+ │ │ └── my-library-0.1.0.0.tix
119
+ │ ├── my-test-1
120
+ │ │ └── my-test-1.tix
121
+ │ ├── other-library-0.1.0.0
122
+ │ │ └── other-library-0.1.0.0.tix
123
+ │ └── other-test-1
124
+ │ └── other-test-1.tix
125
+ └── html
126
+ ├── my-library-0.1.0.0
127
+ │ ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
128
+ │ │ ├── My.Lib.Config.hs.html
129
+ │ │ ├── My.Lib.Types.hs.html
130
+ │ │ └── My.Lib.Util.hs.html
131
+ │ ├── hpc_index_alt.html
132
+ │ ├── hpc_index_exp.html
133
+ │ ├── hpc_index_fun.html
134
+ │ └── hpc_index.html
135
+ ├── my-test-1
136
+ │ ├── my-library-0.1.0.0-ERSaOroBZhe9awsoBkhmcV
137
+ │ │ ├── My.Lib.Config.hs.html
138
+ │ │ ├── My.Lib.Types.hs.html
139
+ │ │ └── My.Lib.Util.hs.html
140
+ │ ├── hpc_index_alt.html
141
+ │ ├── hpc_index_exp.html
142
+ │ ├── hpc_index_fun.html
143
+ │ └── hpc_index.html
144
+ ├── other-libray-0.1.0.0
145
+ │ ├── other-library-0.1.0.0-48EVZBwW9Kj29VTaRMhBDf
146
+ │ │ ├── Other.Lib.A.hs.html
147
+ │ │ └── Other.Lib.B.hs.html
148
+ │ ├── hpc_index_alt.html
149
+ │ ├── hpc_index_exp.html
150
+ │ ├── hpc_index_fun.html
151
+ │ └── hpc_index.html
152
+ ├── other-test-1
153
+ │ ├── other-library-0.1.0.0-48EVZBwW9Kj29VTaRMhBDf
154
+ │ │ ├── Other.Lib.A.hs.html
155
+ │ │ └── Other.Lib.B.hs.html
156
+ │ ├── hpc_index_alt.html
157
+ │ ├── hpc_index_exp.html
158
+ │ ├── hpc_index_fun.html
159
+ │ └── hpc_index.html
160
+ └── index.html
159
161
```
160
162
161
163
All of the coverage information is copied verbatim from the coverage
0 commit comments