mirror of
https://github.com/apache/airflow.git
synced 2026-03-26 15:28:46 +00:00
This is the next stage of refactoring of airflow packages, after moving providers to standalone dstribution and separating devel-common as a common distribution. The `task_sdk` has been renamed to `task-sdk` - this way we will never import anything in task_sdk accidentally starting from content root. Some changes have been needed to make it works: * autouse fixture was added to pytest plugin to add `task-sdk/tests` to PYTHONPATH to make it root import * all tests were moved to `task_sdk` package inside the tests folder * all imports for tests are now `from task_sdk` * common tools for task_sdk has been moved to `devel-common/src/test_utils/task_sdk.py` in order to allow importing them before `task-sdk/tests` is added to pythonpath
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License
|
|
---
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: pip
|
|
directories:
|
|
- /clients/python
|
|
- /dev/breeze
|
|
- /docker_tests
|
|
- /task-sdk
|
|
- /
|
|
schedule:
|
|
interval: daily
|
|
|
|
- package-ecosystem: pip
|
|
directories:
|
|
- /providers/*/
|
|
schedule:
|
|
interval: daily
|
|
groups:
|
|
provider-dependencies:
|
|
patterns:
|
|
- "*"
|