Skip to content

Commit 94c855e

Browse files
committed
update ci and move to julia 0.6
1 parent e16cf29 commit 94c855e

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ os:
55
- osx
66

77
julia:
8-
- 0.5
8+
- 0.6
9+
- nightly
10+
matrix:
11+
allow_failures:
12+
- julia: nightly
13+
git:
14+
depth: 5000
915

1016
notifications:
1117
email: false

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
julia 0.5
1+
julia 0.6
22
ImageCore 0.1.2
33
ColorTypes 0.4
44
GZip

test/runtests.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ for t in tests
1313
end
1414

1515
# CIFAR10
16-
#x, y = CIFAR10.traindata()
17-
#x, y = CIFAR10.testdata()
16+
x, y = CIFAR10.traindata()
17+
x, y = CIFAR10.testdata()
1818

1919
# CIFAR100
20-
#x, y = CIFAR100.traindata()
21-
#x, y = CIFAR100.testdata()
20+
x, y = CIFAR100.traindata()
21+
x, y = CIFAR100.testdata()
2222

2323
# PTBLM
24-
#x, y = PTBLM.traindata()
25-
#x, y = PTBLM.testdata()
24+
x, y = PTBLM.traindata()
25+
x, y = PTBLM.testdata()
2626

2727
# UD_English
28-
#x = UD_English.traindata()
29-
#x = UD_English.devdata()
30-
#x = UD_English.testdata()
28+
x = UD_English.traindata()
29+
x = UD_English.devdata()
30+
x = UD_English.testdata()
3131
nothing

0 commit comments

Comments
 (0)