Skip to content

Commit

Permalink
Merge branch 'main' into feature/minimap-prop-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jitu5 authored Jul 18, 2024
2 parents 7420f12 + faceed9 commit 20382b4
Show file tree
Hide file tree
Showing 11 changed files with 382 additions and 378 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ updates:
directory: "/package" # Location of package manifests
schedule:
interval: "monthly"
versioning-strategy: increase-if-necessary
versioning-strategy: auto
ignore:
- dependency-name: "types-*"
labels:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ package:
find . -regex ".*/__pycache__" -exec rm -rf {} +
find . -regex ".*\.egg-info" -exec rm -rf {} +
test -f package/kedro_viz/html/index.html || (echo "Built npm package not found; packaging process cancelled."; exit 1)
cd package && python setup.py clean --all
cd package && python setup.py sdist bdist_wheel
cd package && rm -rf build/ dist/
cd package && python -m build

build:
rm -rf build package/build package/dist package/kedro_viz/html pip-wheel-metadata package/kedro_viz.egg-info
Expand Down
293 changes: 0 additions & 293 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions README.md
2 changes: 2 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Please follow the established format:
- Add "-p" flag to kedro-viz to match kedro run. (#1960)
- Fix bug related to nested namespace pipelines. (#1897)
- Migrate from `toposort` to `graphlib`. (#1942)
- Fix packaging. (#1766)
- Adjust requirements file and dependabot versioning strategy. (#1978)

# Release 9.1.0

Expand Down
2 changes: 1 addition & 1 deletion cypress/tests/ui/flowchart/menu.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('Flowchart Menu', () => {

it('verifies that users can search/filter for a flowchart component using the search box. #TC-17', () => {
const searchInput = 'Ingestion';
cy.get('.search-input__field').type(searchInput);
cy.get('.search-input__field').type(searchInput, { force: true });

// Pipeline Label in the Menu
cy.get('.pipeline-nodelist__row__label')
Expand Down
Loading

0 comments on commit 20382b4

Please sign in to comment.