All tests don't skip python 3.9 - #3602
Conversation
Codecov Report
@@ Coverage Diff @@
## main #3602 +/- ##
=======================================
+ Coverage 99.7% 99.7% +0.1%
=======================================
Files 335 335
Lines 33522 33503 -19
=======================================
- Hits 33393 33382 -11
+ Misses 129 121 -8
Continue to review full report at Codecov.
|
eccabay
left a comment
There was a problem hiding this comment.
Thanks for tackling this, it's encouraging that no tests needed to be updated! I'm wondering if we should add prophet to the dev requirements - although at the moment I don't think it's necessary.
It looks like there are a few other files that have references to skipping with python 3.9:
evalml/tests/conftest.pyevalml/tests/component_tests/test_utils.py
Once those are updated as well, this should be good to go!
chukarsten
left a comment
There was a problem hiding this comment.
Thanks Michael! Nice job!
Pull Request Description
Removed
pytest.mark.skip_if_39from all tests as testing them in python 3.9, none of them failed.Did
conda create -n evalml_py_39 python=3.9then didmake installdeps-dev.After that, did a search using ctrl-f and looked for
pytest.mark.skip_if_39from all files, removed them from the files that had them and ran each tests. None of the tests that previous were skipped failed.Only issue was two of the tests complained about not having prophet and cmdstanpy installed, but those were easily rectified by doing
pip install prophetandpip install cmdstanpy.Closes #3600
After creating the pull request: in order to pass the release_notes_updated check you will need to update the "Future Release" section of
docs/source/release_notes.rstto include this pull request by adding :pr:123.