We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8091f55 commit ebb44eeCopy full SHA for ebb44ee
test/runtests.jl
@@ -1,3 +1,13 @@
1
+# Work around JuliaLang/Pkg.jl#2500
2
+if VERSION < v"1.8-"
3
+ test_project = first(Base.load_path())
4
+ preferences_file = "LocalPreferences.toml"
5
+ test_preferences_file = joinpath(dirname(test_project), "LocalPreferences.toml")
6
+ if isfile(preferences_file) && !isfile(test_preferences_file)
7
+ cp(preferences_file, test_preferences_file)
8
+ end
9
+end
10
+
11
using LLVM
12
using Test
13
0 commit comments