Closed osma closed 4 years ago
Merging #73 into master will not change coverage. The diff coverage is
0.00%
.
@@ Coverage Diff @@
## master #73 +/- ##
=======================================
Coverage 58.65% 58.65%
=======================================
Files 10 10
Lines 924 924
=======================================
Hits 542 542
Misses 382 382
Impacted Files | Coverage Δ | |
---|---|---|
skosify/rdftools/io.py | 59.52% <0.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 2fd9c3d...5e6dfc2. Read the comment docs.
There is a problem writing RDF/XML output to stdout under Python 3:
The problem is that under Python 3,
sys.stdout
doesn't accept writingbytes
.sys.stdout.buffer
should be used instead. This works also under Python 2.7 so it should be safe to switch.Unfortunately this part of the codebase doesn't have unit tests.