Skip to content

Commit

Permalink
Merge branch 'main' into docs/vizroai_update_advanced_chart_example
Browse files Browse the repository at this point in the history
  • Loading branch information
nadijagraca committed Aug 1, 2024
2 parents 9650f98 + 1c5e36f commit a3b93f1
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
pull-requests: write

steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!--
A new scriv changelog fragment.
Uncomment the section that is right (remove the HTML comment wrapper).
-->

<!--
### Highlights ✨
- A bullet item for the Highlights ✨ category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Removed
- A bullet item for the Removed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Added
- A bullet item for the Added category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Changed
- A bullet item for the Changed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Deprecated
- A bullet item for the Deprecated category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Fixed
- A bullet item for the Fixed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--
### Security
- A bullet item for the Security category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
12 changes: 9 additions & 3 deletions vizro-ai/tests/integration/test_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ def test_chart_with_explanation():
assert_that(
resp.business_insights,
any_of(
contains_string("GDP per capita in the United States"),
contains_string("GDP in the United States"),
contains_string("GDP in the US"),
contains_string("GDP per capita"),
contains_string("GDP"),
),
)
assert_that(
resp.business_insights,
any_of(
contains_string("United States"),
contains_string("US"),
),
)
assert_that(
Expand Down

0 comments on commit a3b93f1

Please sign in to comment.