Tests creating unwanted artifacts #239
Labels
No labels
blocked
breaking
bug
dependencies
duplicate
enhancement
good first issue
help wanted
question
tech debt
testing
wontfix
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference
scion/arbitrader#239
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I've started noticing that running the unit tests with
./gradlew clean buildcan create aforce-closefile unexpectedly that doesn't get cleaned up at the end of the tests.Ideally I'd like to figure out a clean way to properly mock the
ConditionServicetests and any others that create files so they no longer need to create real files, but I'd settle for figuring out which test is failing to clean up after itself and fixing that.This seems to be due to pitest mutating the tests in ways that leave files on the disk. It doesn't happen when I only run JUnit.