Skip to content

Commit

Permalink
[DF] Test using the RDF's RunGraphs for DistRDF too
Browse files Browse the repository at this point in the history
  • Loading branch information
eguiraud committed Jul 14, 2023
1 parent aa257e9 commit c4ba60d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions python/distrdf/common/check_rungraphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import ROOT

import DistRDF
from DistRDF.Backends import Spark
from DistRDF.Backends import Dask

Expand Down Expand Up @@ -46,7 +45,7 @@ def test_rungraphs_sparkanddask_3histos(self, connection):
for proxy in histoproxies:
assert proxy.proxied_node.value is None

DistRDF.RunGraphs(histoproxies)
ROOT.RDF.RunGraphs(histoproxies)

# After RunGraphs all histograms are correctly assigned to the
# node objects
Expand Down
3 changes: 1 addition & 2 deletions python/distrdf/dask/check_rungraphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import ROOT

import DistRDF
from DistRDF.Backends import Dask


Expand Down Expand Up @@ -36,7 +35,7 @@ def test_rungraphs_dask_3histos(self, connection):
for proxy in histoproxies:
assert proxy.proxied_node.value is None

DistRDF.RunGraphs(histoproxies)
ROOT.RDF.RunGraphs(histoproxies)

# After RunGraphs all histograms are correctly assigned to the
# node objects
Expand Down
3 changes: 1 addition & 2 deletions python/distrdf/spark/check_rungraphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import ROOT

import DistRDF
from DistRDF.Backends import Spark


Expand Down Expand Up @@ -36,7 +35,7 @@ def test_rungraphs_spark_3histos(self, connection):
for proxy in histoproxies:
assert proxy.proxied_node.value is None

DistRDF.RunGraphs(histoproxies)
ROOT.RDF.RunGraphs(histoproxies)

# After RunGraphs all histograms are correctly assigned to the
# node objects
Expand Down

0 comments on commit c4ba60d

Please sign in to comment.