You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PackageEvaluator.jl is a script that runs nightly. It attempts to load all Julia packages and run their tests (if available) on both the stable version of Julia (0.3) and the nightly build of the unstable version (0.4). The results of this script are used to generate a package listing enhanced with testing results.
On Julia 0.4
On 2014-09-28 the testing status was Tests pass.
On 2014-09-29 the testing status changed to Tests fail, but package loads.
Tests pass. means that PackageEvaluator found the tests for your package, executed them, and they all passed.
Tests fail, but package loads. means that PackageEvaluator found the tests for your package, executed them, and they didn't pass. However, trying to load your package with using worked.
This error on Julia 0.4 is possibly due to recently merged pull request JuliaLang/julia#8420. This issue was filed because your testing status became worse. No additional issues will be filed if your package remains in this state, and no issue will be filed if it improves. If you'd like to opt-out of these status-change messages, reply to this message saying you'd like to and @IainNZ will add an exception. If you'd like to discuss PackageEvaluator.jl please file an issue at the repository. For example, your package may be untestable on the test machine due to a dependency - an exception can be added.
Test log:
>>> 'Pkg.add("YAML")' log
INFO: Installing Codecs v0.1.2
INFO: Installing Datetime v0.1.6
INFO: Installing LazySequences v0.1.0
INFO: Installing YAML v0.1.7
INFO: Building Datetime
INFO: Package database updated
>>> 'using YAML' log
Warning: imported binding for Date overwritten in module Datetime
Warning: imported binding for DateTime overwritten in module Datetime
Warning: Method definition now in module Dates at dates/conversions.jl:21 overwritten in module Datetime at /home/idunning/pkgtest/.julia/v0.4/Datetime/src/Datetime.jl:294.
Julia Version 0.4.0-dev+842
Commit e5d8c1a (2014-09-29 06:50 UTC)
Platform Info:
System: Linux (x86_64-unknown-linux-gnu)
CPU: Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Sandybridge)
LAPACK: libopenblas
LIBM: libopenlibm
LLVM: libLLVM-3.3
()
>>> test log
Warning: imported binding for Date overwritten in module Datetime
Warning: imported binding for DateTime overwritten in module Datetime
Warning: Method definition now in module Dates at dates/conversions.jl:21 overwritten in module Datetime at /home/idunning/pkgtest/.julia/v0.4/Datetime/src/Datetime.jl:294.
spec-02-01: PASSED
spec-02-02: PASSED
spec-02-03: PASSED
spec-02-04: PASSED
spec-02-05: PASSED
spec-02-06: PASSED
spec-02-07: PASSED
spec-02-08: PASSED
spec-02-09: PASSED
spec-02-10: PASSED
spec-02-11: PASSED
spec-02-12: PASSED
spec-02-13: PASSED
spec-02-14: PASSED
spec-02-15: PASSED
spec-02-16: PASSED
spec-02-17: PASSED
spec-02-18: PASSED
spec-02-19: PASSED
spec-02-20: PASSED
spec-02-21: PASSED
spec-02-22: PASSED
()WARNING: Set(a,b...) is deprecated, use Set({a,b...}) instead.
in Set at deprecated.jl:26
in equivalent at /home/idunning/pkgtest/.julia/v0.4/YAML/test/test.jl:35
in anonymous at no file:79
in include at ./boot.jl:245
in include_from_node1 at loading.jl:128
in process_options at ./client.jl:285
in _start at ./client.jl:354
in _start_3B_3625 at /home/idunning/julia04/usr/bin/../lib/julia/sys.so
WARNING: Set(a,b...) is deprecated, use Set({a,b...}) instead.
in Set at deprecated.jl:26
in equivalent at /home/idunning/pkgtest/.julia/v0.4/YAML/test/test.jl:35
in anonymous at no file:79
in include at ./boot.jl:245
in include_from_node1 at loading.jl:128
in process_options at ./client.jl:285
in _start at ./client.jl:354
in _start_3B_3625 at /home/idunning/julia04/usr/bin/../lib/julia/sys.so
WARNING: sexagesimal integers not yet implemented. Returning string.
WARNING: sexagesimal integers not yet implemented. Returning string.
WARNING: sexagesimal floats not yet implemented. Returning string.
ERROR: InexactError()
in decode at /home/idunning/pkgtest/.julia/v0.4/Codecs/src/Codecs.jl:155
in decode at /home/idunning/pkgtest/.julia/v0.4/Codecs/src/Codecs.jl:15
in construct_yaml_binary at /home/idunning/pkgtest/.julia/v0.4/YAML/src/constructor.jl:344
in construct_object at /home/idunning/pkgtest/.julia/v0.4/YAML/src/constructor.jl:79
in construct_mapping at /home/idunning/pkgtest/.julia/v0.4/YAML/src/constructor.jl:147
in construct_yaml_map at /home/idunning/pkgtest/.julia/v0.4/YAML/src/constructor.jl:325
in construct_object at /home/idunning/pkgtest/.julia/v0.4/YAML/src/constructor.jl:79
in construct_document at /home/idunning/pkgtest/.julia/v0.4/YAML/src/constructor.jl:33
in load at /home/idunning/pkgtest/.julia/v0.4/YAML/src/YAML.jl:22
in load_file at /home/idunning/pkgtest/.julia/v0.4/YAML/src/YAML.jl:46
in anonymous at no file:77
in include at ./boot.jl:245
in include_from_node1 at loading.jl:128
in process_options at ./client.jl:285
in _start at ./client.jl:354
in _start_3B_3625 at /home/idunning/julia04/usr/bin/../lib/julia/sys.so
while loading /home/idunning/pkgtest/.julia/v0.4/YAML/test/test.jl, in expression starting on line 76
>>> end of log
The text was updated successfully, but these errors were encountered:
PackageEvaluator.jl is a script that runs nightly. It attempts to load all Julia packages and run their tests (if available) on both the stable version of Julia (0.3) and the nightly build of the unstable version (0.4). The results of this script are used to generate a package listing enhanced with testing results.
On Julia 0.4
Tests pass.
Tests fail, but package loads.
Tests pass.
means that PackageEvaluator found the tests for your package, executed them, and they all passed.Tests fail, but package loads.
means that PackageEvaluator found the tests for your package, executed them, and they didn't pass. However, trying to load your package withusing
worked.This error on Julia 0.4 is possibly due to recently merged pull request JuliaLang/julia#8420.
This issue was filed because your testing status became worse. No additional issues will be filed if your package remains in this state, and no issue will be filed if it improves. If you'd like to opt-out of these status-change messages, reply to this message saying you'd like to and @IainNZ will add an exception. If you'd like to discuss PackageEvaluator.jl please file an issue at the repository. For example, your package may be untestable on the test machine due to a dependency - an exception can be added.
Test log:
The text was updated successfully, but these errors were encountered: