Skip to content

Commit 00f89f0

Browse files
committed
require CategoricalArrays master for CI
1 parent e964507 commit 00f89f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ notifications:
1010
# uncomment the following lines to override the default test script
1111
script:
1212
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
13-
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("RData"); Pkg.checkout("DataFrames", "master"); Pkg.test("RData"; coverage=true)'
13+
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("RData"); Pkg.checkout("DataFrames", "master"); Pkg.checkout("CategoricalArrays", "master"); Pkg.test("RData"; coverage=true)'
1414
after_success:
1515
- julia -e 'cd(Pkg.dir("RData")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ build_script:
3434
# Need to convert from shallow to complete for Pkg.clone to work
3535
- IF EXIST .git\shallow (git fetch --unshallow)
3636
- C:\projects\julia\bin\julia -e "versioninfo();
37-
Pkg.clone(pwd(), \"RData\"); Pkg.build(\"RData\"); Pkg.checkout(\"DataFrames\", \"master\")"
37+
Pkg.clone(pwd(), \"RData\"); Pkg.build(\"RData\"); Pkg.checkout(\"DataFrames\", \"master\"); Pkg.checkout(\"CategoricalArrays\", \"master\")"
3838

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

0 commit comments

Comments
 (0)