gap-packages / JupyterKernel

Native Jupyter kernel for GAP
https://gap-packages.github.io/JupyterKernel/
BSD 3-Clause "New" or "Revised" License
19 stars 12 forks source link

Enforce a single status message in test output #97

Closed olexandr-konovalov closed 5 years ago

olexandr-konovalov commented 5 years ago

Otherwise due to IO_fork() we end up with running test twice.

Fixes #89

codecov[bot] commented 5 years ago

Codecov Report

Merging #97 into master will not change coverage. The diff coverage is n/a.

@@          Coverage Diff           @@
##           master     #97   +/-   ##
======================================
  Coverage    71.9%   71.9%           
======================================
  Files          14      14           
  Lines         865     865           
======================================
  Hits          622     622           
  Misses        243     243
olexandr-konovalov commented 5 years ago

Ahh this does not work - of course because of forking each process prints the message, so the line

#I  No errors detected while testing

again appears twice in the test log.

olexandr-konovalov commented 5 years ago

A different approach to tackle this is taken in #98