Skip to content

Commit 951a794

Browse files
committed
use julia --project in JuliaRunner
instead of just `julia` to support testing within Julia environments.
1 parent 090cef5 commit 951a794

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dash/testing/application_runners.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,9 @@ def start(self, app, start_timeout=30, cwd=None):
505505

506506
logger.info("Run Dash.jl app with julia => %s", app)
507507

508-
args = shlex.split(f"julia {os.path.realpath(app)}", posix=not self.is_windows)
508+
args = shlex.split(
509+
f"julia --project {os.path.realpath(app)}", posix=not self.is_windows
510+
)
509511
logger.debug("start Dash.jl process with %s", args)
510512

511513
try:

0 commit comments

Comments
 (0)