No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
1471d40
... +0 ...
0b1c303
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
188 | 188 | yield group |
|
189 | 189 | ||
190 | 190 | def groups(self): |
|
191 | - | """Groups present in InferenceData object""" |
|
191 | + | """Return all groups present in InferenceData object.""" |
|
192 | 192 | return self._groups_all |
|
193 | 193 | ||
194 | 194 | def values(self): |
|
195 | - | """Xarray Datasets present in InferenceData object""" |
|
195 | + | """Xarray Datasets present in InferenceData object.""" |
|
196 | 196 | for group in self._groups_all: |
|
197 | 197 | yield getattr(self, group) |
|
198 | 198 | ||
199 | 199 | def items(self): |
|
200 | - | """Groups and corresponding datasets present in InferenceData object""" |
|
200 | + | """Yield groups and corresponding datasets present in InferenceData object.""" |
|
201 | 201 | for group in self._groups_all: |
|
202 | 202 | yield (group, getattr(self, group)) |
|
203 | 203 |
Learn more Showing 13 files with coverage changes found.
arviz/data/io_cmdstanpy.py
arviz/data/io_numpyro.py
arviz/data/io_pyro.py
arviz/data/io_pystan.py
arviz/data/io_pymc3.py
arviz/data/io_cmdstan.py
arviz/data/io_dict.py
arviz/utils.py
arviz/data/base.py
arviz/data/inference_data.py
arviz/plots/backends/bokeh/forestplot.py
arviz/stats/stats_utils.py
arviz/plots/backends/matplotlib/forestplot.py
Files | Coverage |
---|---|
arviz | -0.18% 78.33% |
Project Totals (105 files) | 78.33% |
#1356
0b1c303
#1356
1471d40