-
Notifications
You must be signed in to change notification settings - Fork 470
/
Copy pathconfig.luacov
54 lines (53 loc) · 1.43 KB
/
config.luacov
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
configuration = {
exclude = {
"scripting-engine",
"lua_libs",
"test",
"unofficial",
"DishwasherAlarm",
"DishwasherMode",
"LaundryWasherControls",
"LaundryWasherMode",
"OperationalState",
"RefrigeratorAlarm",
"RefrigeratorAndTemperatureControlledCabinetMode",
"TemperatureControl",
"PumpConfigurationAndControl",
"RvcCleanMode",
"RvcOperationalState",
"RvcRunMode",
"AirQuality",
"CarbonDioxideConcentrationMeasurement",
"CarbonMonoxideConcentrationMeasurement",
"ConcentrationMeasurement",
"FormaldehydeConcentrationMeasurement",
"NitrogenDioxideConcentrationMeasurement",
"OzoneConcentrationMeasurement",
"Pm1ConcentrationMeasurement",
"Pm10ConcentrationMeasurement",
"Pm25ConcentrationMeasurement",
"PressureMeasurement",
"RadonConcentrationMeasurement",
"SmokeCoAlarm",
"TotalVolatileOrganicCompoundsConcentrationMeasurement",
"ActivatedCarbonFilterMonitoring",
"HepaFilterMonitoring",
"MicrowaveOvenControl",
"MicrowaveOvenMode",
"OvenMode",
"DeviceEnergyManagementMode",
"ElectricalEnergyMeasurement",
"ElectricalPowerMeasurement",
"EnergyEvse",
"EnergyEvseMode",
"BooleanStateConfiguration",
"ValveConfigurationAndControl",
},
cobertura = {
filenameparser = function(filename)
local cwd = os.getenv("PWD")
return cwd..'/'..filename
end
}
}
return configuration