From 7ef292d9b152d3865380ffbda89b38a5c3a48f63 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Sun, 22 Mar 2015 17:08:35 +0100 Subject: [PATCH 1/4] Enable cover file output --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 66965fa..017c103 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,10 @@ julia: - nightly notifications: email: false +script: + - julia -e 'Pkg.init(); Pkg.clone(pwd())' + - julia -e 'Pkg.add("Lint");' + - julia -e 'Pkg.test("Meshes", coverage=true)' + after_success: - julia -e 'cd(Pkg.dir("Meshes")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' From 137110067694d8ebcf5054eb3c22286186d2e45c Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Sun, 22 Mar 2015 17:09:17 +0100 Subject: [PATCH 2/4] Moved Lint to test/REQUIRE --- REQUIRE | 1 - test/REQUIRE | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 test/REQUIRE diff --git a/REQUIRE b/REQUIRE index a14af5f..b796bd4 100644 --- a/REQUIRE +++ b/REQUIRE @@ -2,6 +2,5 @@ ImmutableArrays DataStructures ZipFile LightXML -Lint JSON Compat diff --git a/test/REQUIRE b/test/REQUIRE new file mode 100644 index 0000000..203dec5 --- /dev/null +++ b/test/REQUIRE @@ -0,0 +1 @@ +Lint \ No newline at end of file From f45ea0af230085c58aa3e65fe8aae30283a504f3 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Mon, 23 Mar 2015 09:42:10 +0100 Subject: [PATCH 3/4] Remove Pkg.init() --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 017c103..6df5a36 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ julia: notifications: email: false script: - - julia -e 'Pkg.init(); Pkg.clone(pwd())' + - julia -e 'Pkg.clone(pwd())' - julia -e 'Pkg.add("Lint");' - julia -e 'Pkg.test("Meshes", coverage=true)' From 0da38b4c007accd539bf398680570c540b490787 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Mon, 23 Mar 2015 09:50:14 +0100 Subject: [PATCH 4/4] Add unshallow fetch --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 6df5a36..2afb4f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ julia: notifications: email: false script: + - git fetch --unshallow - julia -e 'Pkg.clone(pwd())' - julia -e 'Pkg.add("Lint");' - julia -e 'Pkg.test("Meshes", coverage=true)'