# 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("Secrets file missing") 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("Secrets file out of date")