amoghrajesh commented on PR #43040:
URL: https://github.com/apache/airflow/pull/43040#issuecomment-2415746063

   Struggling with some test related setup. I am running into this as of now:
   ```
   ../../tests_common/test_utils/db.py:23: in <module>
       from airflow.models import (
   ../../airflow/models/__init__.py:78: in __getattr__
       val = import_string(f"{path}.{name}")
   ../../airflow/utils/module_loading.py:39: in import_string
       module = import_module(module_path)
   
/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/importlib/__init__.py:127:
 in import_module
       return _bootstrap._gcd_import(name[level:], package, level)
   ../../airflow/models/dag.py:95: in <module>
       from airflow.models.abstractoperator import AbstractOperator, 
TaskStateChangeCallback
   ../../airflow/models/abstractoperator.py:33: in <module>
       from airflow.template.templater import Templater
   ../../airflow/template/templater.py:23: in <module>
       from airflow.io.path import ObjectStoragePath
   ../../airflow/io/__init__.py:30: in <module>
       from airflow.providers_manager import ProvidersManager
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _ 
   
       """Manages all providers."""
       
       from __future__ import annotations
       
       import fnmatch
       import functools
       import inspect
       import json
       import logging
       import os
       import sys
       import traceback
       import warnings
       from dataclasses import dataclass
       from functools import wraps
       from time import perf_counter
       from typing import TYPE_CHECKING, Any, Callable, MutableMapping, 
NamedTuple, TypeVar
       
       from packaging.utils import canonicalize_name
       
       from airflow.exceptions import AirflowOptionalProviderFeatureException
   >   from airflow.providers.standard.hooks.filesystem import FSHook
   E   ModuleNotFoundError: No module named 'airflow.providers.standard.hooks'
   ```
   
   I see some discussions around, does anyone have any suggestions for this? I 
use Pycharm


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to