-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
datasets tests, GHA merging, minor fix-ups #680
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's looking great :) nice work!
try: | ||
datasets_page = DatasetsPage(page) | ||
datasets_page.go_to_page() | ||
datasets_page.check_dataset_exists_on_page_by_name(dataset_name=dataset_name) | ||
except Exception as e: | ||
print(f'error: dataset not created: {e}') | ||
raise | ||
finally: | ||
delete_dataset_by_name_if_exists(dataset_name=dataset_name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this print something that you need for something in particular? I mean, why not letting it fail and having some way to "after" the test run hook to destroy the dataset?
Not sure I get the idea on why to wrap every creation on try/catch here, I believe it should be a better way to handle it but for now we can keep it as is
* datasets tests, GHA merging, minor fix-ups * descriptions * fix dataset creation when no datasets created * traces locator fix * fixed sanity after UI changes too --------- Co-authored-by: Andrei Căutișanu <[email protected]> Co-authored-by: Andrei Căutișanu <[email protected]>
Details
Tests for datasets CRUD operations.
Coverage:
Also in this PR:
Merging of the 2 Github Actions workflow files, now both the sanity suite and specific feature suites (or all of them) can be ran from the same "Application E2E tests" workflow