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 d0a0968 commit 7a994d1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testkit/src/mill/testkit/IntegrationTester.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@ object IntegrationTester {
* The working directory of the integration test suite, which is the root of the
* Mill build being tested. Contains the `build.sc` file, any application code, and
* the `out/` folder containing the build output
*
* Make sure it lives inside `os.pwd` because somehow the tests fail on windows
* if it lives in the global temp folder.
*/
val workspacePath: os.Path = os.temp.dir(os.pwd / "out" / "interation-tester-workdir", deleteOnExit = false)
val workspacePath: os.Path =
os.temp.dir(os.pwd / "out" / "interation-tester-workdir", deleteOnExit = false)

def debugLog = false

Expand Down

0 comments on commit 7a994d1

Please sign in to comment.