-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get random socket address #47
base: osx_support
Are you sure you want to change the base?
Conversation
Update .travis.yml to include --full build flag
Fix sipp build. Test with default Trusty.
Fix sipp build. Test with default Trusty.
Added description in README.
Feature/support disabling screen_file argument
…rder remote-host as last position argument
Related to #17 |
@y-luis is it possible to try rebasing the history instead? |
535c8eb
to
b2500b7
Compare
Add `auth_username` in command sipp_spec
Resolves SIPp#48
@y-luis just dropped Also I think we can actually run CI against mac with the travis MacOS env. This might be worth putting in the effort now? |
Drop pypy from ci
Hmm looking at the CI results in detail it seems we've got bigger problems with this branch on linux for the py3 versions? This seems odd. I wonder if moving to |
Add a test which demonstrates a bug where if a scenario is loaded from a directory that the `proxyaddr` is never set.
Proxyaddr fix
Use `select.select` to track subproc completion since `select.epoll` isn't available on OSX. Resolves #16
Rebased from |
@y-luis thanks. I think we might have to delay this until we get py3 only support in because I don't want to have to fight with |
I tried to run tests in MacOS using
osx_support
branch (after mergingmaster
into it) and came out thattest_stack:test_sync_run
andtest_stcak:test_async_run
were failing because sipp command for UAC was triggered with0.0.0.0
as server IP, so, I change to127.0.0.1
when retrieving a random socket address withhost=None
.I am not sure whether is related to MacOS but it did not fail when testing in Ubuntu Trusty.