/opt/imh-python/lib/python3.9/site-packages/libcloud/test
NameSizeModeActions
backup/-0755rm
common/-0755rm
compute/-0755rm
container/-0755rm
dns/-0755rm
loadbalancer/-0755rm
storage/-0755rm
__pycache__/-0755rm
conftest.py16490644editdlrm
file_fixtures.py37460644editdlrm
pricing_test.json1270644editdlrm
secrets.py47030644editdlrm
secrets.py-dist48420644editdlrm
test_connection.py163420644editdlrm
test_file_fixtures.py30930644editdlrm
test_http.py35290644editdlrm
test_init.py31190644editdlrm
test_logging_connection.py55820644editdlrm
test_pricing.py46190644editdlrm
test_response_classes.py50020644editdlrm
test_types.py36810644editdlrm
test_utils.py151010644editdlrm
__init__.py85810644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/libcloud/test/conftest.py (1649B)
# 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. import os.path import pytest def pytest_configure(config): """Check that secrets.py is valid""" this_dir = os.path.abspath(os.path.split(__file__)[0]) secrets_current = os.path.join(this_dir, 'secrets.py') secrets_dist = os.path.join(this_dir, 'secrets.py-dist') if not os.path.isfile(secrets_current): print("Missing " + secrets_current) print("Maybe you forgot to copy it from -dist:") print("cp libcloud/test/secrets.py-dist libcloud/test/secrets.py") pytest.exit('') mtime_current = os.path.getmtime(secrets_current) mtime_dist = os.path.getmtime(secrets_dist) if mtime_dist > mtime_current: print("It looks like test/secrets.py file is out of date.") print("Please copy the new secrets.py-dist file over otherwise" + " tests might fail") pytest.exit('')