Closed eumiro closed 3 years ago
Merging #126 (f685b43) into master (4ebb566) will not change coverage. The diff coverage is
100.00%
.
@@ Coverage Diff @@
## master #126 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 6 6
Lines 466 467 +1
=========================================
+ Hits 466 467 +1
Impacted Files | Coverage Δ | |
---|---|---|
graphviz/tools.py | 100.00% <100.00%> (ø) |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 4ebb566...fba09fa. Read the comment docs.
Thank your for the review, everything updated. Should I squash it to a single commit or do you want to do it in the merge?
@xflr6 thank you for the review, I have committed your latest notes as well and squashed to a single commit with a longer description.
As discussed in #125, this replaces
tmpdir
withtmp_path
in all tests (andtmpdir_factory
withtmp_path_factory
), because thepy.path
used astmpdir
is in maintenance mode andpytest
is also migrating totmp_path
.This adds some code though because
py.path
had special functions for almost everything and here they have to be supplied withos
andshutil
.Next step would be replacing all
os.path
/glob
/open
calls in the main code withpathlib.Path
.