Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #14 from JuliaDB/pm/pkg_test_fix
Browse files Browse the repository at this point in the history
Fixed Pkg.test()
  • Loading branch information
iamed2 authored Jul 18, 2017
2 parents 23c4ec2 + 541ad5a commit 31ef38e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ os:
julia:
- 0.4
- 0.5
- 0.6
- nightly
notifications:
email: false
Expand Down
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ environment:
matrix:
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.4/julia-0.4.0-rc1-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.4/julia-0.4.0-rc1-win64.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.4/julia-0.4.0-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.4/julia-0.4.0-win64.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.5/julia-0.5.0-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5.0-win64.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6.0-win32.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6.0-win64.exe"

branches:
only:
Expand Down
1 change: 1 addition & 0 deletions test/REQUIRE
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
FactCheck
DataStructures 0.5.0
2 changes: 1 addition & 1 deletion test/arrays.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module TestColumnarArrayInterface

using FactCheck
import Base.Collections: PriorityQueue
using DataStructures

import Iterators: chain

Expand Down
2 changes: 1 addition & 1 deletion test/failedinterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module FailedInterface

import DBAPI
using FactCheck
import Base.Collections: PriorityQueue
using DataStructures

type BadInterface <: DBAPI.DatabaseInterface end
type BadConnection <: DBAPI.DatabaseConnection{BadInterface} end
Expand Down

0 comments on commit 31ef38e

Please sign in to comment.