slozier

Results 121 issues of slozier

Multiple test failures occur when: - Jumping in and out of different types of blocks (with, try/except, try/finally) - Jumping from non-line events For example test_jump_in_nested_finally_2 and test_jump_in_nested_finally_3 are failing...

Port to ipy3

`test_cp24692` in `test_regressions` is failing on .NET Core. I noticed it failing when testing 2.1 Preview but what I tried with 2.0 it's also failing (but it doesn't on AppVeyor?)....

.NET Core
Port to ipy3

`test_errors` of `test_file` is failing in .NET Core 2.1 Preview. In particular: ```Python try: file('path_too_long' * 100) except Exception as e: assert e.errno == 2 else: assert False ``` The...

.NET Core
Port to ipy3

`test_tuple_new` in `test_isinstance` is failing on .NET Core 2.1 Preview. In particular: ```Python tuple.__new__(str, 'abc') ``` is raising a `SystemError`. The failure appears to be caused by overload resolution and...

mono
.NET Core
Port to ipy3

`test_subprocess` appears to lock up when running `test_stderr_redirect_with_no_stdout_redirect`. See: - https://ci.appveyor.com/project/AlexEarl/ironpython2/build/2.7.8.1-313 - https://ci.appveyor.com/project/AlexEarl/ironpython2/build/2.7.8.1-315

Port to ipy3

`ipy -X:Frames -m pip install zetup` fails with: > Traceback (most recent call last): File "", line 1, in File "c:\users\slozier\appdata\local\temp\pip-build-qnnqrr\zetup\setup.py", line 19, in File "c:\users\slozier\appdata\local\temp\pip-build-qnnqrr\zetup\zetup\__init__.py", line 49, in File...

Port to ipy3

It seems like duplicate DeprecationWarnings are swallowed (which is fine since CPython does the same). However they should still be catchable in catch_warnings. ```Python import warnings warnings.warn("deprecated", DeprecationWarning) with warnings.catch_warnings(record=True)...

Port to ipy3

We should upgrade the pip we distribute to 9.0.1. Whenever people currently use pip they see the following message: > You are using pip version 8.1.1, however version 9.0.1 is...

The headers of the bootstrap 3 header example are not sizing properly with Firefox 53 (works fine with Chrome/Edge). When I load the page the example the headers are too...

I have no idea why the Mono test on macOS on GitHub CI fails. I have noticed though that Azure uses "Test Execution Command Line Tool Version 17.3.3 (x64)", while...

testing
Mono