Skip to content
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

Fix CI test suite and and remove Python 2.7 support #508

Merged
merged 12 commits into from
Nov 9, 2022

Conversation

MilesCranmer
Copy link
Collaborator

The fix for the unittests turned out to just be upgrading Python's coverage tool to 5+, as version 4 was still using HTTP links.

@tkf or @mkitti could one of you review this? Once merged this will let us test the other PRs.

This also drops testing for Python 2.7 which is long deprecated and for which all use should be discouraged (since they stopped doing security patches in the end of 2019).

@MilesCranmer
Copy link
Collaborator Author

MilesCranmer commented Nov 2, 2022

Hey @marius311, not sure if you remember this code you wrote back in #262, but this test seems to be failing:

def test_local_scope(run_cell):
    assert run_cell("""
    x = "global"
    def f():
        x = "local"
        ret = %julia py"x"
        return ret
    f()
    """) == "local"

I can repeat this locally in a Python REPL and this test also seems to fail:

In [26]: %load_ext julia.magic

In [27]: x = "global"

In [28]: def f():
    ...:     x = "local"
    ...:     ret = %julia py"x"
    ...:     return ret
    ...: 

In [29]: f()
Out[29]: 'global'

Any idea why this behavior changed? Is this behavior required for some applications, or could this test be deprecated?

Thanks!
Miles

@MilesCranmer
Copy link
Collaborator Author

If I skip that test, everything else passes. So maybe we deprecate that test for now, and fix it in a future PR. @marius311 is that okay with you?

@codecov
Copy link

codecov bot commented Nov 2, 2022

Codecov Report

Base: 89.20% // Head: 87.34% // Decreases project coverage by -1.85% ⚠️

Coverage data is based on head (ebb3b3b) compared to base (56a7391).
Patch coverage: 88.88% of modified lines in pull request are covered.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #508      +/-   ##
==========================================
- Coverage   89.20%   87.34%   -1.86%     
==========================================
  Files          39       39              
  Lines        2315     2316       +1     
==========================================
- Hits         2065     2023      -42     
- Misses        250      293      +43     
Impacted Files Coverage Δ
src/julia/libjulia.py 92.90% <ø> (+0.54%) ⬆️
src/julia/pytestplugin.py 90.00% <ø> (ø)
src/julia/tests/conftest.py 100.00% <ø> (ø)
src/julia/tests/test_magic.py 98.85% <ø> (ø)
src/julia/magic.py 82.35% <80.00%> (-11.50%) ⬇️
src/julia/tests/test_core.py 97.11% <100.00%> (-1.93%) ⬇️
src/julia/tests/test_juliaoptions.py 100.00% <100.00%> (ø)
src/julia/tests/test_runtests.py 100.00% <100.00%> (ø)
src/julia/tests/test_compatible_exe.py 82.72% <0.00%> (-11.82%) ⬇️
src/julia/juliainfo.py 87.30% <0.00%> (-11.12%) ⬇️
... and 7 more

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@marius311
Copy link
Contributor

Not set up to check quickly, but is local variable interp broken entirely? Like does that test work if theres no global x defined, does it fall back to the local?

@MilesCranmer
Copy link
Collaborator Author

Seems like it:

In [3]: f()
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
Cell In [3], line 1
----> 1 f()

Cell In [2], line 3, in f()
      1 def f():
      2     x = "local"
----> 3     ret = get_ipython().run_line_magic('julia', 'py"x"')
      4     return ret

File ~/venvs/main/lib/python3.11/site-packages/IPython/core/interactiveshell.py:2364, in InteractiveShell.run_line_magic(self, magic_name, line, _stack_depth)
   2362     kwargs['local_ns'] = self.get_local_scope(stack_depth)
   2363 with self.builtin_trap:
-> 2364     result = fn(*args, **kwargs)
   2365 return result

File ~/venvs/main/lib/python3.11/site-packages/julia/magic.py:122, in JuliaMagics.julia(self, line, cell)
    118     caller_frame = caller_frame.f_back
    120 return_value = "nothing" if src.strip().endswith(";") else ""
--> 122 return self._julia.eval(
    123     """
    124     _PyJuliaHelper.@prepare_for_pyjulia_call begin
    125         begin %s end
    126         %s
    127     end
    128     """
    129     % (src, return_value)
    130 )(self.shell.user_ns, caller_frame.f_locals)

File PyCall:1

NameError: name 'x' is not defined

@MilesCranmer
Copy link
Collaborator Author

Seems like the logic around caller frames changed?

# We assume the caller's frame is the first parent frame not in the
# IPython module. This seems to work with IPython back to ~v5, and
# is at least somewhat immune to future IPython internals changes,
# although by no means guaranteed to be perfect.
caller_frame = sys._getframe(3)

If I add a print(caller_frame.f_globals.get("__name__")), here, I get __main__.

while (
caller_frame.f_globals.get("__name__").startswith("IPython")
or caller_frame.f_globals.get("__name__").startswith("julia")
):
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool. I think this, and the change to use inspect, fixes it! Turned the test back on.

@mkitti
Copy link
Member

mkitti commented Nov 3, 2022

What is with the nightly failures?

@MilesCranmer
Copy link
Collaborator Author

I'm not sure. Seems like there's a mismatch in libpython? But not sure how it was generated.

DEBUG (2304) bindir = /opt/hostedtoolcache/julia/nightly/x64/bin
DEBUG (2304) libjulia_path = /opt/hostedtoolcache/julia/nightly/x64/bin/../lib/libjulia.so.1
DEBUG (2304) py_libpython = /opt/hostedtoolcache/Python/3.9.15/x64/lib/libpython3.9.so.1.0
DEBUG (2304) jl_libpython = /home/runner/.julia/conda/3/lib/libpython3.10.so.1.0

PyJulia does not fully support this combination of Julia and Python.
Try:

    * Pass `--julia-compiled-modules=no` option to disable
      precompilation cache.

    * Use `--julia-runtime` option to specify different Julia
      executable.

    * Pass `--no-julia` to run tests that do not rely on Julia
      runtime.
            
Exit: incompatible runtimes
!!!!!!!!!!!!!!!!! _pytest.outcomes.Exit: incompatible runtimes !!!!!!!!!!!!!!!!!
Execute: /home/runner/work/pyjulia/pyjulia/.tox/py/bin/python -m pytest -p pytester -p julia.pytestplugin --doctest-modules --runpytest=subprocess --pyargs julia --log-file /home/runner/work/pyjulia/pyjulia/.tox/py/log/pytest.log --verbose --cov=julia

@mkitti
Copy link
Member

mkitti commented Nov 3, 2022

What's going on here:

Restoring previous PyCall.jl build with PYTHON = /home/runner/.julia/conda/3/bin/python
ERROR: InvocationError for command /home/runner/work/pyjulia/pyjulia/.tox/py/bin/python -m julia.runtests -- --log-file /home/runner/work/pyjulia/pyjulia/.tox/py/log/pytest.log --verbose --cov=julia (exited with code 1)

@mkitti
Copy link
Member

mkitti commented Nov 3, 2022

I'm not sure. Seems like there's a mismatch in libpython? But not sure how it was generated.

Why would this only affect Julia nightly?

@MilesCranmer
Copy link
Collaborator Author

Yeah, it is weird. Is it okay if we turn those tests off for now, since they are nightly, and fix them later?

@mkitti
Copy link
Member

mkitti commented Nov 3, 2022

I would rather just keep them there and merge so we do not forget that the nightly tests are failing.

@MilesCranmer
Copy link
Collaborator Author

Sounds good to me.

@mkitti mkitti requested a review from tkf November 3, 2022 05:15
@mkitti
Copy link
Member

mkitti commented Nov 3, 2022

Regarding Python 2.7, is there any other reason to drop it other than it being old, insecure, and deprecated?

@MilesCranmer
Copy link
Collaborator Author

That’s the main reason, yeah. Especially since this project is not under active development and only occasional maintenance, I think it would be good to focus any available dev resources on the absolutely critical areas.

Although I do think the modification to Julia magic here is only Python 3+ since it uses the inspection module in the Python stdlib (a cleaner way to get the stack frame).

@MilesCranmer
Copy link
Collaborator Author

I'm not sure @tkf is active anymore. Is there anybody else who you think would be a good choice for reviewer?

@MilesCranmer
Copy link
Collaborator Author

MilesCranmer commented Nov 3, 2022

I added python_requires to the setup.py. That should prevent someone from using a newer version of PyJulia on Python 2.7, though they could still use a compatible older version if they want.

@mkitti
Copy link
Member

mkitti commented Nov 3, 2022

Bug me on Monday November 7th to merge and release. I want to give others some time to respond or review this.

@MilesCranmer
Copy link
Collaborator Author

Sending the reminder for today! 🙂

@mkitti mkitti enabled auto-merge November 7, 2022 23:16
@mkitti
Copy link
Member

mkitti commented Nov 7, 2022

I need someone with more privileges to fix the CI situation here. @StefanKarpinski ?

@mkitti mkitti disabled auto-merge November 8, 2022 18:15
@mkitti
Copy link
Member

mkitti commented Nov 8, 2022

I have sufficient permissions to work on this. I'll take a look closer tonight.

I'll add it back in another commit. The tests need more fixes overall.
@mkitti
Copy link
Member

mkitti commented Nov 9, 2022

@MilesCranmer you should have a maintainer role on this repository now. I have admin rights.

@mkitti mkitti merged commit b95e524 into JuliaPy:master Nov 9, 2022
@MilesCranmer MilesCranmer deleted the fix-tests branch November 9, 2022 06:07
@MilesCranmer
Copy link
Collaborator Author

Awesome! Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants