You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we require Pedantic because I used it for validation. However, it's one of 3 dependencies we have and we should try to remove it. Options seem to be:
use dataclasses
write validation/logic ourself
The text was updated successfully, but these errors were encountered:
This is a pretty large refactor of how we were doing parsing and
generation to support a few goals:
- General code maintainability and extensibility
- Subclass Airflow's DAG and TaskGroup model instead of returning them
- Remove `pydantic` dependency in favor of dataclasses (closes#74)
- Add different testing types (`after_each`, `after_all`, `none`)
(closes#62)
- Add tags support (from code and from yml config) (partially addresses
#67)
- Add docs for testing types and tags
Co-authored-by: Chris Hronek <[email protected]>
Right now, we require Pedantic because I used it for validation. However, it's one of 3 dependencies we have and we should try to remove it. Options seem to be:
The text was updated successfully, but these errors were encountered: