2013-10-30 21:58:17 +00:00
|
|
|
#
|
2015-01-14 00:05:26 +00:00
|
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
2013-10-30 21:58:17 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-02-27 02:31:18 +00:00
|
|
|
import sys
|
2015-04-07 14:09:27 +00:00
|
|
|
import os
|
2016-05-15 17:23:14 +00:00
|
|
|
|
|
|
|
from .builtin import Builtin
|
2014-05-13 21:00:35 +00:00
|
|
|
from .vpcs import VPCS
|
2015-01-20 01:30:57 +00:00
|
|
|
from .virtualbox import VirtualBox
|
2015-02-10 01:24:13 +00:00
|
|
|
from .dynamips import Dynamips
|
2015-02-19 18:43:45 +00:00
|
|
|
from .qemu import Qemu
|
2015-05-01 01:05:37 +00:00
|
|
|
from .vmware import VMware
|
2018-03-29 06:26:43 +00:00
|
|
|
from .traceng import TraceNG
|
2014-03-16 03:41:04 +00:00
|
|
|
|
2018-03-29 06:26:43 +00:00
|
|
|
MODULES = [Builtin, VPCS, VirtualBox, Dynamips, Qemu, VMware, TraceNG]
|
2015-02-27 02:31:18 +00:00
|
|
|
|
2021-04-13 09:16:50 +00:00
|
|
|
if (
|
|
|
|
sys.platform.startswith("linux")
|
|
|
|
or hasattr(sys, "_called_from_test")
|
|
|
|
or os.environ.get("PYTEST_BUILD_DOCUMENTATION") == "1"
|
|
|
|
):
|
2018-03-14 09:56:37 +00:00
|
|
|
# IOU & Docker only runs on Linux but test suite works on UNIX platform
|
2015-04-27 13:09:42 +00:00
|
|
|
if not sys.platform.startswith("win"):
|
2018-03-14 09:56:37 +00:00
|
|
|
from .docker import Docker
|
2021-04-13 09:16:50 +00:00
|
|
|
|
2018-03-14 09:56:37 +00:00
|
|
|
MODULES.append(Docker)
|
2015-04-27 13:09:42 +00:00
|
|
|
from .iou import IOU
|
2021-04-13 09:16:50 +00:00
|
|
|
|
2015-04-27 13:09:42 +00:00
|
|
|
MODULES.append(IOU)
|