-
Notifications
You must be signed in to change notification settings - Fork 126
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
Run tests with IPv6 address #76
Conversation
/sigh Travis doesn't support IPv6, internal tests don't support IPv4 😢 Will likely just disable the test internally. |
You can do a sniff of Travis and switch to ipv4 – seems reasonable. |
Good idea! updated PTAL |
Ugh, now the buildbots don't like using IPv6 |
server = await IOServer.bind(InternetAddress.LOOPBACK_IP_V4, 0); | ||
var address = Platform.environment.containsKey('TRAVIS') | ||
? InternetAddress.LOOPBACK_IP_V4 | ||
: InternetAddress.LOOPBACK_IP_V6; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a comment explaining why we're testing on IPv6 on Travis and only Travis?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. The chances that the git blame
becomes at all difficult to find before the comment becomes a lie seems incredibly low but we can add one for now.
No description provided.