Revision 75c38e3fdb0875bf0f5df3a7f0f6625556c9e2e8 authored by Mosè Giordano on 30 January 2024, 08:30:00 UTC, committed by GitHub on 30 January 2024, 08:30:00 UTC
As discussed in the `#ci-dev` call (see
https://github.com/JuliaLang/julia/issues/53103#issuecomment-1915458694
and
https://github.com/JuliaLang/julia/pull/53104#discussion_r1470021366)
there were two problems:

* the use of `Base.require` caused the package to be loaded
* the name of the package was a generic placeholder, and clashed with
other packages loaded during the tests called with the same generic
name.

The solution was to rename test module with a more specific name, and
replace `Base.require` with `Base.compilecache`, the latter only
compiles the package without loading it.

Should fix #53103, close #53104.
1 parent 9816a0b
History
File Mode Size
Dockerfile -rw-r--r-- 140 bytes
devcontainer.json -rw-r--r-- 134 bytes

back to top