Skip to content

Commit

Permalink
Merge pull request #55 from DurieuxPol/enh/workWithIona
Browse files Browse the repository at this point in the history
Disable epicea monitoring during mutant evaluation
  • Loading branch information
guillep authored Dec 21, 2023
2 parents 8f4acf8 + 332b3c7 commit 1d2aad4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/MuTalk-Model/MethodMutation.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,12 @@ MethodMutation >> printOn: aStream [
{ #category : 'running' }
MethodMutation >> runMutantStoppingOnError: aBoolean [

^ [
self install.
self runTestsStoppingOnError: aBoolean ] ensure: [ self uninstall ]
| testResults |
EpMonitor disableDuring: [
[ self install.
testResults := self runTestsStoppingOnError: aBoolean
] ensure: [ self uninstall ] ].
^ testResults
]

{ #category : 'private' }
Expand Down

0 comments on commit 1d2aad4

Please sign in to comment.