686a8f5 test_files_provider: Do not use pytest fixtures as functions

1 file Authored by lslebodn 5 years ago, Committed by jhrozek 5 years ago,
    test_files_provider: Do not use pytest fixtures as functions
    
    test_files_provider.py::test_getpwnam_after_start
      src/tests/intg/test_files_provider.py:344: RemovedInPytest4Warning:
        Fixture "passwd_ops_setup" called directly. Fixtures are not meant
        to be called directly, are created automatically when test functions
        request them as parameters.
        See https://docs.pytest.org/en/latest/fixture.html for more information.
    
      src/tests/intg/test_files_provider.py:362: RemovedInPytest4Warning:
        Fixture "group_ops_setup" called directly. Fixtures are not meant
        to be called directly, are created automatically when test functions
        request them as parameters.
        See https://docs.pytest.org/en/latest/fixture.html for more information.
          return setup_gr_with_list(request, [GROUP1, CANARY_GR])
    
    Resolves:
    https://pagure.io/SSSD/sssd/issue/3942
    
    Merges: https://pagure.io/SSSD/sssd/pull-request/3953
    
    Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>