Tommy Carpenter | 5ad8f03 | 2019-05-30 14:33:21 -0400 | [diff] [blame] | 1 | # ================================================================================== |
| 2 | # Copyright (c) 2019 Nokia |
| 3 | # Copyright (c) 2018-2019 AT&T Intellectual Property. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # ================================================================================== |
| 17 | [tox] |
| 18 | envlist = int |
| 19 | |
| 20 | [testenv:int] |
| 21 | whitelist_externals= |
| 22 | sleep |
| 23 | docker-compose |
| 24 | ab |
| 25 | deps = |
| 26 | pytest-xdist |
| 27 | tavern |
| 28 | changedir=integration_tests |
| 29 | commands_pre= |
| 30 | docker-compose up --build -d |
| 31 | sleep 2 |
| 32 | commands= |
Tommy Carpenter | 18dcbc3 | 2019-06-04 10:20:30 -0400 | [diff] [blame] | 33 | # helm lint a1mediator/ |
Tommy Carpenter | 5ad8f03 | 2019-05-30 14:33:21 -0400 | [diff] [blame] | 34 | pytest -n 2 |
| 35 | ab -n 100 -c 10 -u putdata -T application/json http://localhost:10000/ric/policies/control_admission_time |
| 36 | commands_post= |
| 37 | docker-compose down |