JuliaRegistries / Registrator.jl

Julia package registration bot

Home Page:https://julialang.org/packages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bot fails to be triggered without error with multi-line deps line

lmiq opened this issue · comments

I had a Project.toml file that contained a section like this:

[targets]
test = [ 
    "Test", 
    "TestItemRunner", 
    "Chemfiles", 
    "NearestNeighbors", 
    "ForwardDiff", 
    "Unitful", 
    "Measurements",
    "BenchmarkTools",
]

While this did not cause any error in package development and testing, it caused the registration bot to not be triggered: m3g/CellListMap.jl@081fac8

Changint the test line to:

test = [ "Test", "TestItemRunner", "Chemfiles", "NearestNeighbors", "ForwardDiff", "Unitful", "Measurements", "BenchmarkTools" ]

solved the issue: m3g/CellListMap.jl@af03efc

At the very least, Registrator should post a comment with an error message.