summaryrefslogtreecommitdiffstats
path: root/test-requirements.txt
blob: eb5a41328abcea3745aa714827ef29b387720405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
coverage!=4.4,>=4.0 # Apache-2.0
mock>=2.0.0 # BSD
nose>=1.3.7 # LGPL
flake8<2.6.0,>=2.5.4 # MIT
pylint # GPLv2
sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
sphinx-opnfv-theme
sphinx-rtd-theme
yamllint
doc8>=0.6.0 # Apache-2.0
bashate>=0.5.1 # Apache-2.0
################################################# # Copyright (c) 2017 Ericsson AB and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## --- schema: "yardstick:task:0.1" description: > Yardstick TC001 config file; Measure network throughput using pktgen; Different amounts of flows are tested with, from 2 up to 1001000; All tests are run twice. First twice with the least amount of ports and further on. {% set provider = provider or none %} {% set physical_network = physical_network or 'physnet1' %} {% set segmentation_id = segmentation_id or none %} scenarios: {% for num_ports in [1, 10, 50, 100, 500, 1000] %} - type: Pktgen options: packetsize: 64 number_of_ports: {{num_ports}} duration: 20 host: demeter.yardstick target: poseidon.yardstick runner: type: Iteration iterations: 2 interval: 1 sla: max_ppm: 1000 action: monitor {% endfor %} context: name: yardstick image: yardstick-image flavor: yardstick-flavor user: ubuntu placement_groups: pgrp1: policy: "availability" servers: demeter: floating_ip: true placement: "pgrp1" poseidon: floating_ip: true placement: "pgrp1" networks: test: cidr: '10.0.1.0/24' {% if provider == "vlan" %} provider: {{provider}} physical_network: {{physical_network}} {% if segmentation_id %} segmentation_id: {{segmentation_id}} {% endif %} {% endif %}