-
Notifications
You must be signed in to change notification settings - Fork 37
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
Remove easily deprecated functions from project.py #574
Conversation
@atravitz I think we'll need to hold on this PR for at least one more thorough review of the code base. I can't think of them off the top of my head, but I'm quite sure that there are a number of functions scattered around that had not been deprecated yet but were considered for deprecation in 2.0. That means (unless I'm mistaken) that we'll need at least one more deprecation pass and one more minor release before 2.0. I've been a bit swamped between work and lots of travel lately, but I will nominate myself to scope this out in the near future since I'm done traveling for about a month after this weekend and hopefully am wrapping up some major pushes at work. |
Sounds good! I'm happy to help with that. |
Codecov Report
@@ Coverage Diff @@
## next #574 +/- ##
=======================================
Coverage ? 78.21%
=======================================
Files ? 65
Lines ? 7022
Branches ? 1302
=======================================
Hits ? 5492
Misses ? 1230
Partials ? 300 Continue to review full report at Codecov.
|
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.
I'm pushing some minor changes to tests. Otherwise this looks good.
@@ -1535,20 +1531,18 @@ def test_reset_statepoint_project(self): | |||
src_job.data[key] = d | |||
assert key in src_job.data | |||
assert len(src_job.data) == 1 | |||
with pytest.deprecated_call(): |
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.
This test is now an exact duplicate of test_reset_statepoint_job
. I removed it.
@@ -1064,8 +1064,7 @@ def test_reset_statepoint_project(self): | |||
src_job.data[key] = d | |||
assert key in src_job.data | |||
assert len(src_job.data) == 1 | |||
with pytest.deprecated_call(): |
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.
This test is now an exact duplicate of test_reset_statepoint_job
. I removed it.
tests/test_project.py
Outdated
with pytest.deprecated_call(): | ||
assert self.project.get_id() == "testing_test_project" | ||
assert str(self.project) == self.project.get_id() | ||
def test_project_id(self): |
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.
This test is now an exact duplicate of test_property_id
. I removed it.
assert 1 == len(list(self.project.find_job_ids({"sp.a": 0, "doc.b": 0}))) | ||
assert 0 == len(list(self.project.find_job_ids({"sp.a": 0, "doc.b": 5}))) | ||
assert 0 == len(list(self.project.find_job_ids({"sp.a": 5, "doc.b": 0}))) | ||
assert 0 == len(list(self.project.find_job_ids({"sp.a": 5, "doc.b": 5}))) |
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.
There are some test cases for unified queries like {"sp.a": 5, "doc.b": 5}
shown in this function that are not in test_find_jobs
below. I moved those test cases to test_find_jobs
so that we retain coverage of those code paths.
This conversation about signac-flow support is somewhat relevant for this PR as well. I think signac-flow only calls |
for more information, see https://pre-commit.ci
This reverts commit 4e52a01.
This reverts commit 5f30ef4.
…benchmark times).
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
* beginning to pull out deprecated from project.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Revert "[pre-commit.ci] auto fixes from pre-commit.com hooks" This reverts commit 4e52a01. * Revert "beginning to pull out deprecated from project.py" This reverts commit 5f30ef4. * removing deprecated get_id() * removing deprecated get_id() from project.py * updating more instances of project.get_id() * removing index building methods * removing access module and reset/update statepoint from project.py * Simplify benchmark setup code for readability (no observed impact on benchmark times). * Remove tests that are exact duplicates. * Add missing test cases for test_find_jobs from the removed function test_find_job_ids. Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bradley Dice <bdice@bradleydice.com>
Description
There's a considerable amount of code that is scheduled to be removed ahead of the signac 2.0 release.
Motivation and Context
This removes deprecated content from
project.py
that I felt confident could be removed safely. I will follow this up with another PR that will require some discussion before we delete code.There are still some tests dependent on deprecated code, and so I'm making sure that the tests are being updated accordingly and that we aren't losing code coverage.
Types of Changes
1The change breaks (or has the potential to break) existing functionality.
Checklist:
If necessary: