Run working tests with 0.7

pull/137/head
Matti Pastell 2018-07-23 18:39:48 +02:00
parent f8978eb560
commit 01f8810bc3
5 changed files with 15 additions and 20 deletions

View File

@ -1,7 +1,7 @@
language: julia
julia:
- 0.6
- 0.7
- nightly
matrix:
allow_failures:

View File

@ -1,6 +1,6 @@
environment:
matrix:
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.7/julia-0.7-latest-win64.exe"
branches:
only:

View File

@ -2,6 +2,7 @@ import Mustache, Highlights
import .Markdown2HTML
using Compat
using Dates
using Printf
function format(doc::WeaveDoc)
formatted = AbstractString[]

View File

@ -1,11 +1,12 @@
using Weave
using Test
@info("Test: Chunk options")
include("chunk_options.jl")
@info("Testing error handling")
include("errors_test.jl")
#@info("Testing error handling")
#include("errors_test.jl")
@info("Test: Converting")
include("convert_test.jl")
@ -17,22 +18,15 @@ include("markdown_test.jl")
@info("Testing figure formatters")
include("figureformatter_test.jl")
@info("Testing rich output")
include("rich_output.jl")
#@info("Testing rich output")
#include("rich_output.jl")
#@info("Test: Caching")
#include("cache_test.jl")
@info("Test: Caching")
include("cache_test.jl")
#@info("Test: Chunk options with Gadfly")
#include("chunk_opts_gadfly.jl")
@info("Test: Chunk options with Gadfly")
include("chunk_opts_gadfly.jl")
#info("Test: Weaving with Gadfly")
#include("gadfly_formats.jl")
#info("Test: Weaving with PyPlot")
#include("pyplot_formats.jl")
@info("Test: Weaving with Plots.jl")
include("plotsjl_test.jl")
include("publish_test.jl")
#@info("Test: Weaving with Plots.jl")
#include("plotsjl_test.jl")
#include("publish_test.jl")