Skip to content

Commit

Permalink
Merge pull request #786 from JuliaDocs/mp/v1.0
Browse files Browse the repository at this point in the history
Add 1.0 CI targets and get the tests to pass again
  • Loading branch information
mortenpi authored Aug 10, 2018
2 parents 31e3e3d + 3262ea7 commit 7ab01d5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ os:
julia:
- 0.6
- 0.7
- 1.0
- nightly

notifications:
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1.0
- julia_version: latest

platform:
Expand Down
2 changes: 1 addition & 1 deletion test/examples/src/lib/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ b = ans

```@repl
using Compat.Random # hide
srand(1); # hide
@static if VERSION < v"1.0.0-" srand(1) else Random.seed!(1) end; # hide
nothing
rand()
a = 1
Expand Down
6 changes: 5 additions & 1 deletion test/examples/src/man/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ DocTestSetup =
quote
using Documenter
using Compat.Random
srand(1)
@static if VERSION < v"1.0.0-"
srand(1)
else
Random.seed!(1)
end
end
```

Expand Down

0 comments on commit 7ab01d5

Please sign in to comment.