def check_configuration()

in etc/travis/DeploymentTester.py [0:0]


    def check_configuration(self):
        print('\nChecking configuration...')
        if not self.config.is_valid():
            print('No Azure deployment info given, skipping test deployment and exiting.')
            print('Further information: https://github.com/Azure/Moodle#automated-testing-travis-ci')
            sys.exit()
        artifacts_location = self.config.deployment_properties['parameters']['_artifactsLocation']
        print('- Detected "_artifactsLocation": ' + artifacts_location['value'])
        print("(all check)")