turbaszek edited a comment on pull request #11132:
URL: https://github.com/apache/airflow/pull/11132#issuecomment-703483096


   @Sangarshanan it seems that one test is failing:
   ```
   _______________________________________ 
TestLoggingConfigurationRule.test_valid_check 
_______________________________________
   /usr/local/lib/python3.7/contextlib.py:73: in inner
       with self._recreate_cm():
   /usr/local/lib/python3.7/contextlib.py:112: in __enter__
       return next(self.gen)
   tests/test_utils/config.py:45: in conf_vars
       conf.set(section, key, value)
   
/usr/local/lib/python3.7/site-packages/backports/configparser/__init__.py:1239: 
in set
       super(ConfigParser, self).set(section, option, value)
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
   
   self = <airflow.configuration.AirflowConfigParser object at 0x7fa366479bd0>, 
section = 'logging', option = 'base_log_folder'
   value = 'DUMMY'
   
       def set(self, section, option, value=None):
           """Set an option."""
           if value:
               value = self._interpolation.before_set(self, section, option,
                                                      value)
           if not section or section == self.default_section:
               sectdict = self._defaults
           else:
               try:
                   sectdict = self._sections[section]
               except KeyError:
   >               raise from_none(NoSectionError(section))
   E               backports.configparser.NoSectionError: No section: 'logging'
   ```


----------------------------------------------------------------
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.

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


Reply via email to