File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 - IPERF_VERSION="3.1.7"
2424 - IPERF_VERSION="3.2"
2525 - IPERF_VERSION="3.3"
26+ - IPERF_VERSION="3.4"
27+ - IPERF_VERSION="3.5"
28+ - IPERF_VERSION="3.6"
2629before_install :
2730 # Download the various available iperf3 sources
2831 - if [[ "$IPERF_VERSION" == "3.0.6" ]]; then wget https://github.com/esnet/iperf/archive/3.0.6.tar.gz ;fi
@@ -42,6 +45,9 @@ before_install:
4245 - if [[ "$IPERF_VERSION" == "3.1.7" ]]; then wget https://github.com/esnet/iperf/archive/3.1.7.tar.gz ;fi
4346 - if [[ "$IPERF_VERSION" == "3.2" ]]; then wget https://github.com/esnet/iperf/archive/3.2.tar.gz ;fi
4447 - if [[ "$IPERF_VERSION" == "3.3" ]]; then wget https://github.com/esnet/iperf/archive/3.3.tar.gz ;fi
48+ - if [[ "$IPERF_VERSION" == "3.4" ]]; then wget https://github.com/esnet/iperf/archive/3.4.tar.gz ;fi
49+ - if [[ "$IPERF_VERSION" == "3.5" ]]; then wget https://github.com/esnet/iperf/archive/3.5.tar.gz ;fi
50+ - if [[ "$IPERF_VERSION" == "3.6" ]]; then wget https://github.com/esnet/iperf/archive/3.6.tar.gz ;fi
4551
4652 # Install iperf version selected above
4753 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tar xvf *.tar.gz ;fi
@@ -50,11 +56,11 @@ before_install:
5056 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./configure && make && sudo make install ;fi
5157 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd .. ;fi
5258 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export LD_LIBRARY_PATH=/usr/local/lib ;fi
53- install :
59+ install :
5460 - " pip install -r requirements.txt"
5561 - " pip install coverage"
5662 - " pip install coveralls"
57- script :
63+ script :
5864 - " coverage run --source=iperf3 setup.py test"
5965after_success :
6066 coveralls
Original file line number Diff line number Diff line change 33 Release History
44---------------
55
6+ 0.1.11 (2019-04-13)
7+ ++++++++++++++++++
8+ - Fixed kB_s and MB_s in UDP test results (Thanks @gleichda)
9+ - Added omit option (Thanks @ChristofKaufmann)
10+
6110.1.10 (2018-03-28)
712+++++++++++++++++++
813- Allow manual set of libiperf library path and name using lib_name kwarg on Iperf3 Class
Original file line number Diff line number Diff line change @@ -130,6 +130,8 @@ Testing
130130 - 3.1.7
131131 - 3.2
132132 - 3.3
133+ - 3.4
134+ - 3.5
133135 - 3.6
134136
135137- Test coverage reporting through `coveralls.io <https://coveralls.io/ >`__
Original file line number Diff line number Diff line change 6666# built documents.
6767#
6868# The short X.Y version.
69- version = '0.1.10 '
69+ version = '0.1.11 '
7070# The full version, including alpha/beta/rc tags.
71- release = '0.1.10 '
71+ release = '0.1.11 '
7272
7373# The language for content autogenerated by Sphinx. Refer to documentation
7474# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class provides common settings for the :class:`Client` and :class:`Server`
3131 from Queue import Queue # Python2 compatibility
3232
3333
34- __version__ = '0.1.10 '
34+ __version__ = '0.1.11 '
3535
3636
3737MAX_UDP_BULKSIZE = (65535 - 8 - 20 )
You can’t perform that action at this time.
0 commit comments