Skip to content

Commit

Permalink
Progress
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Jan 19, 2023
1 parent 04d52d1 commit d15e779
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/TestItemRunner2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function launch_new_process(testitem)

testserver_script = joinpath(@__DIR__, "testserver_main.jl")

jl_process = open(Cmd(`julia --startup-file=no --history-file=no --depwarn=no $testserver_script $pipe_name $(key.project_path) $(key.package_path) $(key.package_name)`))
jl_process = open(Cmd(`$(Base.julia_cmd()) --startup-file=no --history-file=no --depwarn=no $testserver_script $pipe_name $(key.project_path) $(key.package_path) $(key.package_name)`))

socket = Sockets.accept(server)

Expand All @@ -90,8 +90,6 @@ function launch_new_process(testitem)
i = findfirst(isequal(test_process), test_processes)

popat!(test_processes, i)

@info "Successfully removed process from tracking"
catch err
Base.display_error(err, catch_backtrace())
end
Expand Down

0 comments on commit d15e779

Please sign in to comment.