Skip to content

Commit

Permalink
temporarily require DataFrames master for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alyst committed Sep 15, 2017
1 parent 24fc1bf commit e969026
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ julia:
notifications:
email: false
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("RData"); Pkg.test("RData"; coverage=true)'
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("RData"); Pkg.checkout("DataFrames", "master"); Pkg.test("RData"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("RData")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## RData v0.1.0 Release Notes

Updated to Julia v0.6 (older versions not supported), DataFrames.jl v0.10, Nulls.jl and CategoricalArrays.jl v0.2.
Updated to Julia v0.6 (older versions not supported), DataFrames.jl v0.11, Nulls.jl and CategoricalArrays.jl v0.2.

##### Changes
* R logical vectors converted to `Vector{Bool}` (instead of `Vector{Int32}`)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo();
Pkg.clone(pwd(), \"RData\"); Pkg.build(\"RData\")"
Pkg.clone(pwd(), \"RData\"); Pkg.build(\"RData\"); Pkg.checkout(\"DataFrames\", \"master\")"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"RData\")"

0 comments on commit e969026

Please sign in to comment.