We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d041d2 commit c98dca3Copy full SHA for c98dca3
test_tutorials/requirements.txt
@@ -43,5 +43,7 @@ mplhep
43
pytest
44
# setuptools
45
46
+scikit-learn
47
+
48
# Look for CPU-only versions of PyTorch to avoid pulling CUDA in the CI docker images.
49
# -f https://download.pytorch.org/whl/cpu/torch_stable.html
test_tutorials/test_tutorials.py
@@ -24,7 +24,12 @@
24
py_tutorials = []
25
for sub in subdirs:
26
sub_path = tutorial_dir / sub
27
- py_tutorials.extend(sub_path.rglob("*.py"))
+ # py_tutorials.extend(sub_path.rglob("*.py"))
28
+ for f in sub_path.rglob("*.py"):
29
+ # skip distrdf tutorials for now
30
+ if "distrdf" in f.name:
31
+ continue
32
+ py_tutorials.append(f)
33
34
def test_tutorials_are_detected():
35
assert len(py_tutorials) > 0
0 commit comments