Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python_wheel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:

- name: Run tutorials
run: |
pytest -vv -s -rF --show-capture=all test/wheels
pytest -vv --verbosity="4" -rF test/wheels

create-and-upload-wheel-registry:
if: github.event_name != 'pull_request' # The secrets are not available in PR
Expand Down
2 changes: 1 addition & 1 deletion tutorials/analysis/dataframe/df000_simple.C
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void df000_simple()
ROOT::RDataFrame rdf(100);

// Define a new column `x` that contains random numbers
auto rdf_x = rdf.Define("x", [](){ return gRandom->Rndm(); });
auto rdf_x = rdf.Define("x", [](){ return; });

// Create a histogram from `x`
auto h = rdf_x.Histo1D("x");
Expand Down
2 changes: 1 addition & 1 deletion tutorials/analysis/dataframe/df000_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
rdf = ROOT.RDataFrame(100)

# Define a new column `x` that contains random numbers
rdf_x = rdf.Define("x", "gRandom->Rndm()")
rdf_x = rdf.Define("x", 42)

# Create a histogram from `x` and draw it
h = rdf_x.Histo1D("x")
Expand Down
Loading