File tree Expand file tree Collapse file tree 7 files changed +78
-9
lines changed Expand file tree Collapse file tree 7 files changed +78
-9
lines changed Original file line number Diff line number Diff line change
1
+ # Licensed under the Apache License, Version 2.0 (the "License"); you may
2
+ # not use this file except in compliance with the License. You may obtain
3
+ # a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10
+ # License for the specific language governing permissions and limitations
11
+ # under the License.
12
+
13
+ import unittest
14
+
15
+ try :
16
+ import os_win # noqa: F401
17
+ except ImportError :
18
+ raise unittest .SkipTest (
19
+ "The 'os-win' dependency is not installed."
20
+ )
Original file line number Diff line number Diff line change 11
11
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
12
# License for the specific language governing permissions and limitations
13
13
# under the License.
14
- #
14
+
15
+ import unittest
16
+
15
17
from oslo_utils .fixture import uuidsentinel
16
18
17
19
from nova .compute import power_state
18
20
from nova .compute import vm_states
19
21
from nova import objects
20
22
23
+ try :
24
+ import powervm # noqa: F401
25
+ except ImportError :
26
+ raise unittest .SkipTest (
27
+ "The 'pypowervm' dependency is not installed."
28
+ )
29
+
21
30
22
31
TEST_FLAVOR = objects .flavor .Flavor (
23
32
memory_mb = 2048 ,
Original file line number Diff line number Diff line change
1
+ # Licensed under the Apache License, Version 2.0 (the "License"); you may
2
+ # not use this file except in compliance with the License. You may obtain
3
+ # a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10
+ # License for the specific language governing permissions and limitations
11
+ # under the License.
12
+
13
+ import unittest
14
+
15
+ try :
16
+ import oslo_vmware # noqa: F401
17
+ except ImportError :
18
+ raise unittest .SkipTest (
19
+ "The 'oslo.vmware' dependency is not installed."
20
+ )
Original file line number Diff line number Diff line change
1
+ # Licensed under the Apache License, Version 2.0 (the "License"); you may
2
+ # not use this file except in compliance with the License. You may obtain
3
+ # a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10
+ # License for the specific language governing permissions and limitations
11
+ # under the License.
12
+
13
+ import unittest
14
+
15
+ try :
16
+ import zvmconnector # noqa: F401
17
+ except ImportError :
18
+ raise unittest .SkipTest (
19
+ "The 'zVMCloudConnector' dependency is not installed."
20
+ )
Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ lxml>=4.5.0 # BSD
8
8
Routes >= 2.3.1 # MIT
9
9
cryptography >= 2.7 # BSD/Apache-2.0
10
10
WebOb >= 1.8.2 # MIT
11
- # NOTE(mriedem): greenlet 0.4.14 does not work with older versions of gcc on
12
- # ppc64le systems, see https://github.com/python-greenlet/greenlet/issues/136.
13
11
greenlet >= 0.4.15 # MIT
14
12
PasteDeploy >= 1.5.0 # MIT
15
13
Paste >= 2.0.2 # MIT
@@ -52,17 +50,14 @@ os-brick>=4.3.1 # Apache-2.0
52
50
os-resource-classes >= 1.1.0 # Apache-2.0
53
51
os-traits >= 2.5.0 # Apache-2.0
54
52
os-vif >= 1.15.2 # Apache-2.0
55
- os-win >= 5.4.0 # Apache-2.0
56
53
castellan >= 0.16.0 # Apache-2.0
57
54
microversion-parse >= 0.2.1 # Apache-2.0
58
55
tooz >= 1.58.0 # Apache-2.0
59
56
cursive >= 0.2.1 # Apache-2.0
60
- pypowervm >= 1.1.15 # Apache-2.0
61
57
retrying >= 1.3.3 ,!= 1.3.0 # Apache-2.0
62
58
os-service-types >= 1.7.0 # Apache-2.0
63
59
taskflow >= 3.8.0 # Apache-2.0
64
60
python-dateutil >= 2.7.0 # BSD
65
- zVMCloudConnector >= 1.3.0 ;sys_platform != 'win32' # Apache 2.0 License
66
61
futurist >= 1.8.0 # Apache-2.0
67
62
openstacksdk >= 0.35.0 # Apache-2.0
68
63
dataclasses >= 0.7 ;python_version == '3.6' # Apache 2.0 License
Original file line number Diff line number Diff line change @@ -30,6 +30,14 @@ classifiers =
30
30
[extras]
31
31
osprofiler =
32
32
osprofiler>=1.4.0 # Apache-2.0
33
+ powervm =
34
+ pypowervm>=1.1.15 # Apache-2.0
35
+ zvm =
36
+ zVMCloudConnector>=1.3.0; sys_platform!='win32' # Apache 2.0 License
37
+ hyperv =
38
+ os-win>=5.4.0 # Apache-2.0
39
+ vmware =
40
+ oslo.vmware>=3.6.0 # Apache-2.0
33
41
34
42
[files]
35
43
data_files =
Original file line number Diff line number Diff line change @@ -23,6 +23,3 @@ testtools>=2.5.0 # MIT
23
23
bandit>=1.1.0 # Apache-2.0
24
24
gabbi>=1.35.0 # Apache-2.0
25
25
wsgi-intercept>=1.7.0 # MIT License
26
-
27
- # vmwareapi driver specific dependencies
28
- oslo.vmware>=3.6.0 # Apache-2.0
You can’t perform that action at this time.
0 commit comments