Skip to content

Commit

Permalink
fix python unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jan 31, 2025
1 parent 09a21a6 commit 7c557fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pythonlib/src/mill/pythonlib/TestModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ object TestModule {
args()
}
runner().run(
("-m", "unittest", testArgs, "-v")
("-m", "unittest", testArgs, "-v"),
workingDir = Task.workspace
)
Seq()
}
Expand All @@ -78,7 +79,8 @@ object TestModule {
sources().map(_.path),
args()
// format: in
)
),
workingDir = Task.workspace
)
Seq()
}
Expand Down

0 comments on commit 7c557fe

Please sign in to comment.