Add Hypothesis property tests for 6 previously uncovered modules - #1431
Merged
Conversation
Closed
Copilot
AI
changed the title
[WIP] Add hypothesis test coverage for existing gaps
Add Hypothesis property tests for 6 previously uncovered modules
Jul 18, 2026
SkBlaz
marked this pull request as ready for review
July 18, 2026 05:26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue #1430 identified gaps in property-based test coverage. Six py3plex modules had no corresponding
tests/property/files.New test files (124 tests total)
test_diagnostics_properties.pyDiagnosticSeverity,FixSuggestion,Diagnosticconstruction/serialisationtest_optimizer_properties.pyLogicalFilter,LogicalScan,LogicalProject, etc.)test_out_of_core_properties.py_parse_condition_kwargs,OutOfCoreNetworkconstruction andinfo()schematest_experiments_properties.pyExperimentconstruction,compute_id()determinism, identity/round-trip invariantstest_linter_properties.pyLintIssueseverity constants,LINT_ERROR_CODESstructure, format invariantstest_ergonomics_properties.pyquick_network,quick_analysis,show_network_summaryNotable API quirks surfaced during test authorship
net.get_layers()returns a 3-tuple(layer_names, graph_objects, edge_dict)— not a flat iterable of names. Tests usenet.get_layers()[0]to access layer names.OutOfCoreNetworkrequires a real file path at construction; tests create a minimal CSV viatmp_path.capsys: Hypothesis@giventests cannot use function-scoped pytest fixtures — replacedcapsyswithio.StringIO+contextlib.redirect_stdout.All tests follow existing conventions:
@pytest.mark.property,@settings(deadline=None),try/except ImportError → pytest.skipguard at module level.