fuel-agent/fuel_agent/tests/test_requirements.py
Alexander Gordeev 2a21ee4b26 Add test for requirements
It should help to indicate issues with python requirements faster.
Otherwise, we could end up with failed job to build ISO a bit later
which, in turn, will block the majority of other devs.

Change-Id: I04e9de0dd5b794ab89d912c661d47d691a8fcb1d
Related-Bug: #1481297
2015-09-17 15:03:04 +03:00

22 lines
738 B
Python

# -*- coding: utf-8 -*-
# Copyright 2015 Mirantis, Inc.
#
# Licensed 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.
from pkg_resources import require
def test_check_requirements_conflicts():
require('fuel_agent')