Update tests for more julia versions

pull/591/head
David Anthoff 2019-02-23 18:02:14 -08:00
rodzic cdb3de5690
commit 892d93c5f4
10 zmienionych plików z 75 dodań i 23 usunięć

Wyświetl plik

@ -0,0 +1,5 @@
Julia - REQUIRE: test version for julia v1.0
---------------
Starting with julia v0.7 and up, the package manager has changed, so this tests
that the julia version can be specified and packages installed correctly.

Wyświetl plik

@ -0,0 +1,4 @@
julia 1.0
# Julia packages:
Compat

Wyświetl plik

@ -0,0 +1,17 @@
#!/usr/bin/env julia
# Verify the version:
if VERSION < v"1" || VERSION >= v"1.1"
exit(1)
end
try
# Test that the package was installed.
using Compat
# Verify that the environment variables are set correctly for julia 1.0+
@assert "julia" ∈ readdir(Sys.BINDIR)
catch
exit(1)
end
exit(0)

Wyświetl plik

@ -0,0 +1,5 @@
Julia - REQUIRE: test version for julia v1.0
---------------
Starting with julia v0.7 and up, the package manager has changed, so this tests
that the julia version can be specified and packages installed correctly.

Wyświetl plik

@ -0,0 +1,4 @@
julia 1.1
# Julia packages:
Compat

Wyświetl plik

@ -0,0 +1,17 @@
#!/usr/bin/env julia
# Verify the version:
if VERSION < v"1.1" || VERSION >= v"1.2"
exit(1)
end
try
# Test that the package was installed.
using Compat
# Verify that the environment variables are set correctly for julia 1.0+
@assert "julia" ∈ readdir(Sys.BINDIR)
catch
exit(1)
end
exit(0)

Wyświetl plik

@ -1,6 +1,6 @@
#!/usr/bin/env julia
# Verify the version:
if VERSION < v"1"
if VERSION < v"1" || VERSION >= v"2"
exit(1)
end