Skip to content

Commit d52fac0

Browse files
committed
set MetaGraphs to master in travis
Don't know how to depend on master set depends on 0.6.2 awaiting version.
1 parent 158c82c commit d52fac0

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ matrix:
2929
# - julia --check-bounds=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("DistributedFactorGraphs"); Pkg.test("DistributedFactorGraphs"; coverage=true)'
3030

3131
after_success:
32-
- julia -e 'using Pkg; cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
32+
- julia -e 'using Pkg; cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add(PackageSpec(name="MetaGraphs", rev="master")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
33+
# - julia -e 'using Pkg; cd(Pkg.dir("DistributedFactorGraphs")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
3334

3435
jobs:
3536
include:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Graphs = "≥ 0.10.3"
2323
Reexport = "≥ 0.2"
2424
Requires = "≥ 0.5"
2525
julia = "0.7, 1"
26-
MetaGraphs = "0.6.1+"
26+
# MetaGraphs = "0.6.2"
2727

2828
[extras]
2929
IncrementalInference = "904591bb-b899-562f-9e6f-b8df64c7d480"

src/LightGraphsDFG/services/LightGraphsDFG.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,6 @@ function _copyIntoGraph!(sourceDFG::LightGraphsDFG, destDFG::LightGraphsDFG, ns:
476476
end
477477
end
478478
end
479-
@show "Using ME!"
480479
return nothing
481480
end
482481

test/runtests.jl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ using Test
22
using DataFrames
33
using DistributedFactorGraphs
44

5-
#FIXME REMOVE when MetaGraphs tags new release
6-
using Pkg
7-
MG_master = PackageSpec(name="MetaGraphs", rev="master")
8-
Pkg.add(MG_master)
9-
#____ REMOVE when MetaGraphs tags new release
10-
115
# Test each interface
126
apis = [GraphsDFG, LightGraphsDFG]
137
# apis = [graphsDFG, cgDFG]

0 commit comments

Comments
 (0)