This website works better with JavaScript.
Home
Explore
Get Started
airship
/
drydock
Code
Issues
Proposed changes
Browse Source
Merge "Accelerate YAML operations with LibYAML"
master
Zuul
7 months ago
committed by
Gerrit Code Review
parent
5ac0d8c35d
caa7f22b50
commit
c7583638e1
5 changed files
with
8 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
python/drydock_provisioner/__init__.py
+2
-1
python/requirements-direct.txt
+2
-1
python/requirements-lock.txt
+1
-0
python/tests/unit/test_cli_task.py
+1
-0
python/tests/unit/test_schema_validation.py
+ 2
- 0
python/drydock_provisioner/__init__.py
View File
@ -11,3 +11,5 @@
# 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
pylibyaml
# noqa: F401 # patch pyyaml to use libyaml bindings
+ 2
- 1
python/requirements-direct.txt
View File
@ -1,4 +1,5 @@
PyYAML==5.1
pylibyaml~=0.1
PyYAML~=5.3.1
pyghmi==1.0.18
netaddr
falcon
+ 2
- 1
python/requirements-lock.txt
View File
@ -53,6 +53,7 @@ PTable==0.9.2
pycadf==2.8.0
pycrypto==2.6.1
pyghmi==1.0.18
pylibyaml==0.1.0
pymongo==3.6.1
pyparsing==2.2.1
python-dateutil==2.8.1
@ -60,7 +61,7 @@ python-editor==1.0.3
python-keystoneclient==3.22.0
python-mimeparse==1.6.0
pytz==2018.5
PyYAML==5.1
PyYAML==5.
3.
1
redfish==2.0.1
repoze.lru==0.7
requests==2.22.0
+ 1
- 0
python/tests/unit/test_cli_task.py
View File
@ -11,6 +11,7 @@
# 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
pylibyaml
# noqa: F401 # patch pyyaml to use libyaml bindings
import
yaml
import
pytest
+ 1
- 0
python/tests/unit/test_schema_validation.py
View File
@ -1,3 +1,4 @@
import
pylibyaml
# noqa: F401 # patch pyyaml to use libyaml bindings
import
yaml
import
jsonschema
import
pkg_resources
Write
Preview
Loading…
Cancel
Save