Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Aug 22, 2024
1 parent e4d50ef commit bd3ba4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testkit/src/mill/testkit/IntegrationTester.scala
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ object IntegrationTester {
* Mill build being tested. Contains the `build.sc` file, any application code, and
* the `out/` folder containing the build output
*/
val workspacePath: os.Path = os.temp.dir(deleteOnExit = false)
val workspacePath: os.Path = os.pwd / "out" / "interation-tester-workdir"

os.remove.all(workspacePath)
os.makeDir.all(workspacePath)
def debugLog = false

/**
Expand Down

0 comments on commit bd3ba4d

Please sign in to comment.