Skip to content

Commit

Permalink
fixup docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shirshanka committed Nov 1, 2022
1 parent e9f7988 commit e91a058
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ We use a plugin architecture so that you can install only the dependencies you a
| [trino](./generated/ingestion/sources/trino.md) | `pip install 'acryl-datahub[trino]'` | Trino source |
| [starburst-trino-usage](./generated/ingestion/sources/trino.md) | `pip install 'acryl-datahub[starburst-trino-usage]'` | Starburst Trino usage statistics source |
| [nifi](./generated/ingestion/sources/nifi.md) | `pip install 'acryl-datahub[nifi]'` | Nifi source |
| [powerbi](./generated/ingestion/sources/powerbi.md) | `pip install 'acryl-datahub[powerbi]'` | Microsoft Power BI source |
| [powerbi-report-server](./generated/ingestion/sources/powerbi-report-server.md) | `pip install 'acryl-datahub[powerbi-report-server]'` | Microsoft Power BI Report Server source |
| [powerbi](./generated/ingestion/sources/powerbi.md#module-powerbi) | `pip install 'acryl-datahub[powerbi]'` | Microsoft Power BI source |
| [powerbi-report-server](./generated/ingestion/sources/powerbi.md#module-powerbi-report-server) | `pip install 'acryl-datahub[powerbi-report-server]'` | Microsoft Power BI Report Server source |

### Sinks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -460,13 +460,14 @@ def report_dropped(self, view: str) -> None:
self.filtered_reports.append(view)


@platform_name("PowerBI Report Server")
@platform_name("PowerBI")
@config_class(PowerBiReportServerDashboardSourceConfig)
@support_status(SupportStatus.UNKNOWN)
@support_status(SupportStatus.INCUBATING)
@capability(SourceCapability.OWNERSHIP, "Enabled by default")
class PowerBiReportServerDashboardSource(Source):
"""
This plugin extracts the following:
Use this plugin to connect to [PowerBI Report Server](https://powerbi.microsoft.com/en-us/report-server/).
It extracts the following:
Metadata that can be ingested:
- report name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ def default_source_config():
@freeze_time(FROZEN_TIME)
@mock.patch("requests_ntlm.HttpNtlmAuth")
def test_powerbi_ingest(mock_msal, pytestconfig, tmp_path, mock_time, requests_mock):
test_resources_dir = pytestconfig.rootpath / "tests/integration/powerbi_report_server"
test_resources_dir = (
pytestconfig.rootpath / "tests/integration/powerbi_report_server"
)

register_mock_api(request_mock=requests_mock)

Expand Down

0 comments on commit e91a058

Please sign in to comment.