Enable a julia test again

pull/595/head
David Anthoff 2019-02-26 08:50:16 -08:00
rodzic 8b1ef5c120
commit 9c2b66d7b0
1 zmienionych plików z 9 dodań i 9 usunięć

Wyświetl plik

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