Skip to content

Commit 800556b

Browse files
authored
Revert "Forward code coverage flags. (#94)" (#97)
This reverts commit b873b89.
1 parent b43872d commit 800556b

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ParallelTestRunner"
22
uuid = "d3525ed8-44d0-4b2c-a655-542cee43accc"
33
authors = ["Valentin Churavy <v.churavy@gmail.com>"]
4-
version = "2.4.1"
4+
version = "2.4.0"
55

66
[deps]
77
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

src/ParallelTestRunner.jl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -425,20 +425,6 @@ function test_exe(color::Bool=false)
425425
test_exeflags = Base.julia_cmd()
426426
push!(test_exeflags.exec, "--project=$(Base.active_project())")
427427
push!(test_exeflags.exec, "--color=$(color ? "yes" : "no")")
428-
429-
opts = Base.JLOptions()
430-
if opts.code_coverage == 1
431-
push!(test_exeflags.exec, "--code-coverage=user")
432-
elseif opts.code_coverage == 2
433-
if opts.output_code_coverage != C_NULL
434-
push!(test_exeflags.exec, "--code-coverage=$(unsafe_string(opts.output_code_coverage))")
435-
else
436-
push!(test_exeflags.exec, "--code-coverage=all")
437-
end
438-
elseif opts.code_coverage == 3
439-
push!(test_exeflags.exec, "--code-coverage=@$(unsafe_string(opts.tracked_path))")
440-
end
441-
442428
return test_exeflags
443429
end
444430

0 commit comments

Comments
 (0)