Skip to content

Commit 3b03369

Browse files
dehannAffie
authored andcommitted
allow fast finish on travis testing EDIT: also travis update and documenter cleanup (#180)
* allow fast finish on travis testing * Only do IIF test if branch != release and don't allow IIF failures * clean up documentation stage to use docs/Project.toml * Remove DataFrames from documentation stage, no longer required.
1 parent 77e03f1 commit 3b03369

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ jobs:
2222
include:
2323
- julia: 1.2
2424
env: IIF_TEST=true
25+
if: NOT branch =~ ^release.*$
2526
- stage: "Documentation"
2627
julia: 1.0
2728
os: linux
2829
script:
29-
- julia -e 'import Pkg; Pkg.add("Documenter"); Pkg.add("Neo4j"); Pkg.add("GraphPlot")'
30-
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
31-
Pkg.instantiate()'
30+
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
3231
- julia --project=docs/ docs/make.jl
3332
after_success: skip
33+
fast_finish: true
3434

3535
notifications:
3636
email: false
3737

3838
matrix:
3939
allow_failures:
4040
- julia: nightly
41-
- env: IIF_TEST=true
41+
# - env: IIF_TEST=true
4242

4343
# Set the password for Neo4j to neo4j:test
4444
before_script:

docs/Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
43

54
[compat]
6-
Documenter = "~0.21"
5+
Documenter = "0.23"

docs/make.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Documenter
2-
using DataFrames
32
using DistributedFactorGraphs
43

54
makedocs(

0 commit comments

Comments
 (0)